UNPKG

371 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var Controller = (function () {
4 function Controller(path, handler) {
5 this.path = path;
6 this.handler = function (server, opts, next) {
7 handler(server, opts, next);
8 next();
9 };
10 }
11 return Controller;
12}());
13exports.Controller = Controller;