feat: Implement even more endpoints

This commit is contained in:
Alexander Polynomdivision
2018-09-29 19:10:27 +02:00
parent fdaa9cb8f3
commit 9ea5078c5c
7 changed files with 130 additions and 62 deletions

View File

@@ -0,0 +1,8 @@
import { Request } from "express";
import { Db } from "mongodb";
export type LRequest = Request & {
db: Db;
token: string;
};