blob: 6bca49c5aaf9941c78c14a416ea4017fc40fba3d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { Router } from "express";
const router = Router();
router.get("/", (req, res) => {
// TODO:
res.send({ fingerprint: "", assignments: [] });
});
export default router;
|