mirror of
https://github.com/zimplexing/OrionTV.git
synced 2026-02-17 14:14:46 +08:00
15 lines
399 B
TypeScript
15 lines
399 B
TypeScript
import { Router } from "express";
|
|
import searchRouter from "./search";
|
|
import detailRouter from "./detail";
|
|
import doubanRouter from "./douban";
|
|
import imageProxyRouter from "./image-proxy";
|
|
|
|
const router = Router();
|
|
|
|
router.use("/search", searchRouter);
|
|
router.use("/detail", detailRouter);
|
|
router.use("/douban", doubanRouter);
|
|
router.use("/image-proxy", imageProxyRouter);
|
|
|
|
export default router;
|