class IndexMW

    configure: ({app: app, callback: callback}) ->
        app.set "views", "public"
        app.get "/", (req, res) =>
            res.render "index.ejs", req.indexVars
        callback?()

module.exports = IndexMW
