chore: fixing usages

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2023-02-07 13:21:34 +01:00
parent 35d736be0e
commit 5077fdb242
3 changed files with 68 additions and 68 deletions
+30 -30
View File
@@ -16,22 +16,22 @@
import {
Backend,
cacheFactory,
configFactory,
cacheServiceFactory,
configServiceFactory,
createSpecializedBackend,
databaseFactory,
discoveryFactory,
httpRouterFactory,
rootHttpRouterFactory,
lifecycleFactory,
rootLifecycleFactory,
loggerFactory,
permissionsFactory,
rootLoggerFactory,
schedulerFactory,
tokenManagerFactory,
urlReaderFactory,
identityFactory,
databaseServiceFactory,
discoveryServiceFactory,
httpRouterServiceFactory,
rootHttpRouterServiceFactory,
lifecycleServiceFactory,
rootLifecycleServiceFactory,
loggerServiceFactory,
permissionsServiceFactory,
rootLoggerServiceFactory,
schedulerServiceFactory,
tokenManagerServiceFactory,
urlReaderServiceFactory,
identityServiceFactory,
} from '@backstage/backend-app-api';
import {
ServiceFactory,
@@ -44,21 +44,21 @@ import {
import type { InternalSharedBackendEnvironment } from '@backstage/backend-plugin-api/src/wiring/createSharedEnvironment';
export const defaultServiceFactories = [
cacheFactory(),
configFactory(),
databaseFactory(),
discoveryFactory(),
httpRouterFactory(),
identityFactory(),
lifecycleFactory(),
loggerFactory(),
permissionsFactory(),
rootHttpRouterFactory(),
rootLifecycleFactory(),
rootLoggerFactory(),
schedulerFactory(),
tokenManagerFactory(),
urlReaderFactory(),
cacheServiceFactory(),
configServiceFactory(),
databaseServiceFactory(),
discoveryServiceFactory(),
httpRouterServiceFactory(),
identityServiceFactory(),
lifecycleServiceFactory(),
loggerServiceFactory(),
permissionsServiceFactory(),
rootHttpRouterServiceFactory(),
rootLifecycleServiceFactory(),
rootLoggerServiceFactory(),
schedulerServiceFactory(),
tokenManagerServiceFactory(),
urlReaderServiceFactory(),
];
/**