1
0
mirror of https://github.com/shiroikitsu8/Bayshore_6r_legacy.git synced 2024-12-04 20:08:00 +01:00
Bayshore_6r_legacy/src/module.ts

5 lines
117 B
TypeScript
Raw Normal View History

2022-07-11 10:15:30 +02:00
import {Application} from 'express';
export abstract class Module {
abstract register(app: Application): void;
}