mirror of
https://github.com/shiroikitsu8/Bayshore_6r_legacy.git
synced 2024-12-04 11:57:57 +01:00
5 lines
117 B
TypeScript
5 lines
117 B
TypeScript
import {Application} from 'express';
|
|
|
|
export abstract class Module {
|
|
abstract register(app: Application): void;
|
|
} |