Server/project/src/callbacks/HttpCallbacks.ts

31 lines
537 B
TypeScript
Raw Normal View History

2023-03-03 16:23:46 +01:00
import { inject, injectable } from "tsyringe";
import { OnLoad } from "@spt-aki/di/OnLoad";
import { HttpServer } from "@spt-aki/servers/HttpServer";
2023-03-03 16:23:46 +01:00
@injectable()
export class HttpCallbacks implements OnLoad
{
constructor(
@inject("HttpServer") protected httpServer: HttpServer
)
{
}
public async onLoad(): Promise<void>
{
this.httpServer.load();
}
public getRoute(): string
{
return "aki-http";
}
public getImage(): string
{
return "";
}
}