mirror of
https://github.com/zimplexing/OrionTV.git
synced 2026-05-22 10:07:34 +08:00
Update
This commit is contained in:
18
backend/src/routes/index.ts
Normal file
18
backend/src/routes/index.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Router } from "express";
|
||||
import searchRouter from "./search";
|
||||
import detailRouter from "./detail";
|
||||
import doubanRouter from "./douban";
|
||||
import loginRouter from "./login";
|
||||
import playRecordsRouter from "./playrecords";
|
||||
import imageProxyRouter from "./image-proxy";
|
||||
|
||||
const router = Router();
|
||||
|
||||
router.use("/search", searchRouter);
|
||||
router.use("/detail", detailRouter);
|
||||
router.use("/douban", doubanRouter);
|
||||
router.use("/login", loginRouter);
|
||||
router.use("/playrecords", playRecordsRouter);
|
||||
router.use("/image-proxy", imageProxyRouter);
|
||||
|
||||
export default router;
|
||||
Reference in New Issue
Block a user