Implement inbox

This commit is contained in:
Akihiko Odaki
2018-04-01 15:58:49 +09:00
parent 9a71a8b917
commit fabf233478
6 changed files with 69 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
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;