UNPKG

@goa/goa

Version:

The Goa Source Code For Compilation Into @Goa/Koa That Includes Modules, Tests, Types And Dependencies.

8 lines (7 loc) 162 B
import Goa from '../../../src' const goa = new Goa() goa.use((ctx) => { /* start example */ ctx.assert(ctx.user, 401, 'Please login!') /* end example */ })