0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/router.js

12 lines
189 B
JavaScript
Raw Normal View History

/*global Ember */
// ensure we don't share routes between all Router instances
var Router = Ember.Router.extend();
Router.map(function () {
'use strict';
});
export default Router;