UNPKG

aztec

Version:

Node Js Framework for creating API Services

20 lines (18 loc) 315 B
import app, { testMiddleware } from '../index'; app.route({ method: 'GET', path: '/home', middlewares: [testMiddleware] }); app.routes('user', [ { method: 'GET', path: '/', middlewares: [testMiddleware] }, { method: 'GET', path: '/detail', middlewares: [testMiddleware] } ]);