9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
import { VixpressService } from "@dunemask/vix";
|
|
import { OK, VERB } from "@dunemask/vix/logging";
|
|
|
|
export default class AppInitService extends VixpressService {
|
|
async startService() {
|
|
VERB("APP INIT", "Running init services....");
|
|
OK("APP INIT", "Done!");
|
|
}
|
|
}
|