1
Fork 0

typescript(multiplayer-backend): email validation tests

Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
Matei Adriel 2019-04-15 18:59:30 +03:00 committed by prescientmoon
parent 87d8999c68
commit 1544ca69e2
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
14 changed files with 5236 additions and 0 deletions
typescript/multiplayer-backend

View file

@ -0,0 +1,22 @@
//public config
//interfaces
export interface routeList {
[key: string]: string
}
export interface whiteListUrl {
url: string
methods?: string
}
//routes
export const baseUrl = "./src/routes/"
export const routes: routeList = {
"/logs": "logging/logs.ts",
"/auth": "auth/auth.ts"
}
//whitelist of urls
export const whiteList = [{
url: "http://localhost:4200"
}]