10 lines
273 B
TypeScript
10 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!");
|
||
|
}
|
||
|
}
|