feat: add platform manager skeleton
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import type { Coreflow } from './coreflow.classes.coreflow.js';
|
||||
import { logger } from './coreflow.logging.js';
|
||||
|
||||
export class PlatformManager {
|
||||
public coreflowRef: Coreflow;
|
||||
|
||||
constructor(coreflowRefArg: Coreflow) {
|
||||
this.coreflowRef = coreflowRefArg;
|
||||
}
|
||||
|
||||
public async start() {
|
||||
logger.log('info', 'Platform manager started');
|
||||
}
|
||||
|
||||
public async stop() {
|
||||
logger.log('info', 'Platform manager stopped');
|
||||
}
|
||||
|
||||
public async reconcilePlatformServices() {
|
||||
logger.log('info', 'Platform service reconciliation is not implemented yet');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user