mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-16 18:29:01 +01:00
a1b490afa7
Closes #1411
18 lines
346 B
TypeScript
18 lines
346 B
TypeScript
import * as express from 'express';
|
|
|
|
import user from './user';
|
|
import inbox from './inbox';
|
|
import outbox from './outbox';
|
|
import publicKey from './publickey';
|
|
import note from './note';
|
|
|
|
const app = express();
|
|
app.disable('x-powered-by');
|
|
|
|
app.use(user);
|
|
app.use(inbox);
|
|
app.use(outbox);
|
|
app.use(publicKey);
|
|
app.use(note);
|
|
|
|
export default app;
|