mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-09-18 21:38:07 +00:00
12 lines
199 B
TypeScript
12 lines
199 B
TypeScript
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;
|