mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-15 10:01:01 -07:00
13 lines
199 B
TypeScript
13 lines
199 B
TypeScript
|
import * as express from 'express';
|
||
|
|
||
|
import user from './user';
|
||
|
import inbox from './inbox';
|
||
|
|
||
|
const app = express();
|
||
|
app.disable('x-powered-by');
|
||
|
|
||
|
app.use(user);
|
||
|
app.use(inbox);
|
||
|
|
||
|
export default app;
|