Server/project/src/di/OnLoad.ts

6 lines
81 B
TypeScript
Raw Normal View History

2023-11-16 02:35:05 +01:00
export interface OnLoad
2023-03-03 16:23:46 +01:00
{
onLoad(): Promise<void>;
getRoute(): string;
2023-11-16 02:35:05 +01:00
}