UNPKG

koa2-boilerplate-plus

Version:
12 lines (10 loc) 198 B
'use strict'; import compose from 'koa-compose'; import checkauth from './checkauth'; export default function middleware() { return compose( [ checkauth() ] ) }