Implement account public key endpoint
This commit is contained in:
parent
a3cef6e9b5
commit
cba73d6bc1
6 changed files with 66 additions and 52 deletions
|
|
@ -3,6 +3,7 @@ import * as express from 'express';
|
|||
import user from './user';
|
||||
import inbox from './inbox';
|
||||
import outbox from './outbox';
|
||||
import publicKey from './publickey';
|
||||
import post from './post';
|
||||
|
||||
const app = express();
|
||||
|
|
@ -11,6 +12,7 @@ app.disable('x-powered-by');
|
|||
app.use(user);
|
||||
app.use(inbox);
|
||||
app.use(outbox);
|
||||
app.use(publicKey);
|
||||
app.use(post);
|
||||
|
||||
export default app;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue