aboutsummaryrefslogtreecommitdiffhomepage
path: root/controllers/index.js
blob: 7dca002ff6b7d64506e88dbb2533717e1689e702 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
;(function () {
  'use strict'

  var constants = require('../initializers/constants')

  var routes = {
    api: require('./api/' + constants.API_VERSION),
    views: require('./views')
  }

  module.exports = routes
})()