Fix wrong imports which lead to module initialization failures

Signed-off-by: David Festal <dfestal@redhat.com>
This commit is contained in:
David Festal
2025-06-24 13:46:55 +02:00
parent 1e7082ec48
commit d5c0cbd25c
2 changed files with 2 additions and 2 deletions
@@ -19,7 +19,7 @@ import {
createServiceRef,
} from '@backstage/backend-plugin-api';
import { createRouter } from './router';
import { dynamicPluginsServiceRef } from '@backstage/backend-dynamic-feature-service';
import { dynamicPluginsServiceRef } from '../manager';
import { spec } from '../schema/openapi';
import { ManifestFileName } from '@module-federation/sdk';
import { RemoteInfo } from '../schema/openapi/generated/models';
@@ -20,7 +20,7 @@ import {
} from '@backstage/backend-plugin-api';
import express from 'express';
import { createOpenApiRouter, spec } from '../schema/openapi';
import { DynamicPluginProvider } from '@backstage/backend-dynamic-feature-service';
import { DynamicPluginProvider } from '../manager';
import * as fs from 'fs';
import * as path from 'path';
import * as url from 'url';