csballz/koala-puree

View on GitHub
lib/jwt_plugin.js

Summary

Maintainability
A
0 mins
Test Coverage
var JWT = require("./jwt.js");

module.exports = exports = {
    setup: function*(next){
        this.JWT = JWT;
        yield *next;
    }
};