lib/controller.js

Summary

Maintainability
A
0 mins
Test Coverage
class Controller {

    static injector(ctn) {
        return [
            ctn.make('varal.app')
        ];
    }

    constructor(app) {
        this.app = app;
    }

}

exports = module.exports = Controller;