You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
483 B

import * as services from "./services";
import { Microservice } from "@autoplex/microservice";
/**
* The main application class
*/
export default class Application extends Microservice
{
/**
* Return the current application instance
*/
public static instance() { return super.instance() }
/**
* Create a new application instance
*/
public constructor() {
super();
for (let ServiceClass of Object.values(services)) {
this.installService(ServiceClass);
}
}
}