Sharkey/src/server/web/docs.ts
2018-04-13 06:06:18 +09:00

21 lines
420 B
TypeScript

/**
* Docs
*/
import * as path from 'path';
import * as Router from 'koa-router';
import * as send from 'koa-send';
const docs = path.resolve(`${__dirname}/../../client/docs/`);
const router = new Router();
router.get('/assets', async ctx => {
await send(ctx, `${docs}/assets`);
});
router.get(/^\/([a-z_\-\/]+?)$/, async ctx => {
await send(ctx, `${docs}/${ctx.params[0]}.html`);
});
module.exports = router;