16 lines
289 B
TypeScript
16 lines
289 B
TypeScript
import * as express from 'express';
|
|
|
|
import user from './user';
|
|
import inbox from './inbox';
|
|
import outbox from './outbox';
|
|
import post from './post';
|
|
|
|
const app = express();
|
|
app.disable('x-powered-by');
|
|
|
|
app.use(user);
|
|
app.use(inbox);
|
|
app.use(outbox);
|
|
app.use(post);
|
|
|
|
export default app;
|