jormungandr-bite/src/server/activitypub/index.ts

19 lines
346 B
TypeScript
Raw Normal View History

2018-04-01 00:58:49 -06:00
import * as express from 'express';
import user from './user';
import inbox from './inbox';
2018-04-01 04:18:36 -06:00
import outbox from './outbox';
2018-04-01 05:07:04 -06:00
import publicKey from './publickey';
2018-04-01 04:18:36 -06:00
import post from './post';
2018-04-01 00:58:49 -06:00
const app = express();
app.disable('x-powered-by');
app.use(user);
app.use(inbox);
2018-04-01 04:18:36 -06:00
app.use(outbox);
2018-04-01 05:07:04 -06:00
app.use(publicKey);
2018-04-01 04:18:36 -06:00
app.use(post);
2018-04-01 00:58:49 -06:00
export default app;