'use strict';
const Router = require('koa-router');
let r = new Router();
const index = {
index: async(ctx, next) => {
ctx.redirect('/projects');
}
};
r.get('/', index.index);
r.get('/index', (ctx, next) => {
ctx.body = 'Todo';
});
module.exports = r;