mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 13:00:13 +02:00
12 lines
268 B
TypeScript
12 lines
268 B
TypeScript
import express, { Router } from 'express';
|
|
|
|
export const router: Router = express.Router({ mergeParams: true });
|
|
|
|
router.post('/scan', async (_req, res) => {
|
|
return res.status(200);
|
|
});
|
|
|
|
router.post('/', async (_req, res) => {
|
|
return res.status(200).json({});
|
|
});
|