@swizzyweb/swerve-manager
Version:
swizzy-swerve is a bootstrapper for swizzy web services. This package will bootstrap and run independent swizzy web services.
16 lines (13 loc) • 298 B
text/typescript
export type KeyValue<VALUE> = { [k: string]: VALUE };
export interface IService {
packageName?: string;
servicePath?: string;
packageJson?: any;
logLevel?: string;
[key: string]: any;
}
export interface IConfig {
port?: number;
services: KeyValue<IService>;
[key: string]: any;
}