1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 10:11:34 +02:00

Merge branch 'fosscord:master' into fix-dm

This commit is contained in:
AlTech98 2021-09-18 18:37:06 +02:00 committed by GitHub
commit e5120c0c5b

View File

@ -0,0 +1,11 @@
import { Request, Response, Router } from "express";
import { route } from "@fosscord/api";
const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => {
//TODO
res.json([]).status(200);
});
export default router;