mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
15 lines
268 B
TypeScript
15 lines
268 B
TypeScript
import { Router } from 'express';
|
|
import auth from './auth';
|
|
import cookie from './cookie';
|
|
import config from './config';
|
|
import log from './log';
|
|
|
|
export default () => {
|
|
const app = Router();
|
|
auth(app);
|
|
cookie(app);
|
|
config(app);
|
|
log(app);
|
|
return app;
|
|
};
|