backend-app-api: move http dir out of lib

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-01-09 17:24:33 +01:00
parent 56d7066e85
commit 243f38de5a
15 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -20,6 +20,6 @@
* @packageDocumentation
*/
export * from './lib/http';
export * from './http';
export * from './wiring';
export * from './services/implementations';
@@ -22,7 +22,7 @@ import {
LoggerService,
} from '@backstage/backend-plugin-api';
import express, { RequestHandler, Express } from 'express';
import { MiddlewareFactory, startHttpServer } from '../../../lib/http';
import { MiddlewareFactory, startHttpServer } from '../../../http';
import { RestrictedIndexedRouter } from './RestrictedIndexedRouter';
interface RootHttpRouterConfigureOptions {