mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-15 07:54:18 +02:00
Move server directory outside of frontend src
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import express, { Router } from 'express';
|
||||
import { controller } from '@controllers/index';
|
||||
|
||||
export const router: Router = express.Router({ mergeParams: true });
|
||||
|
||||
router.get('/', controller.artists.getList);
|
||||
|
||||
router.get(':serverId', controller.artists.getDetail);
|
||||
Reference in New Issue
Block a user