Implement outbox

This commit is contained in:
Akihiko Odaki
2018-04-01 19:18:36 +09:00
parent 0cb6fbea8c
commit 1f1417a0f7
12 changed files with 161 additions and 76 deletions

View File

@@ -1,14 +1,16 @@
import * as express from 'express';
import post from './post';
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(post);
app.use(user);
app.use(inbox);
app.use(outbox);
app.use(post);
export default app;