Implement post Activity Streams

This commit is contained in:
Akihiko Odaki
2018-04-01 18:12:51 +09:00
parent fabf233478
commit 12a251c7d6
5 changed files with 95 additions and 4 deletions

View File

@@ -1,11 +1,13 @@
import * as express from 'express';
import post from './post';
import user from './user';
import inbox from './inbox';
const app = express();
app.disable('x-powered-by');
app.use(post);
app.use(user);
app.use(inbox);