Added support for submodules

This commit is contained in:
mrfry 2021-03-30 15:56:04 +02:00
parent 7e70aa6c8e
commit 2a0926aa7e
3 changed files with 44 additions and 4 deletions

View file

@ -73,3 +73,11 @@ export interface Request extends express.Request {
session: any
busboy: any
}
export interface SubmoduleData {
app: express.Application
url: string
publicdirs: Array<string>
userDB?: any
nextdir?: string
}