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.
 
 
 
 
 
 

19 lines
396 B

import { Microservice } from "@autoplex/microservice";
import * as services from "./services";
export default class Application extends Microservice
{
/**
* The app key to sign stuff
*/
public readonly APP_KEY: string;
/**
* Create a new application instance
*/
constructor(appKey: string) {
super();
this.APP_KEY = appKey;
this.installServices(Object.values(services));
}
}