Guest User

Untitled

a guest
Sep 25th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. module.exports = ({ router }) => {
  2. // getting the home route
  3. router.get('/', (ctx, next) => {
  4. console.log(ctx);
  5. ctx.body = ctx;
  6. });
  7. };
Add Comment
Please, Sign In to add comment