0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/server/routes/index.js

9 lines
No EOL
192 B
JavaScript

var api = require('./api'),
admin = require('./admin'),
frontend = require('./frontend');
module.exports = {
api: api,
admin: admin,
frontend: frontend
};