diff --git a/src/lib/routes/admin-api/project/index.ts b/src/lib/routes/admin-api/project/index.ts new file mode 100644 index 0000000000..a031baaa9c --- /dev/null +++ b/src/lib/routes/admin-api/project/index.ts @@ -0,0 +1,11 @@ +import Controller from '../../controller'; +import { IUnleashConfig } from '../../../types/option'; +import { IUnleashServices } from '../../../types/services'; +import ProjectHealthReport from './health-report'; + +export default class ProjectApi extends Controller { + constructor(config: IUnleashConfig, services: IUnleashServices) { + super(config); + this.use('/', new ProjectHealthReport(config, services).router); + } +}