Skip to content

Commit

Permalink
fixes broken server paths, #173
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmdantas committed Jun 24, 2016
1 parent 4f911f3 commit 3d754d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

const TodoRoutes = require('./todo-route');
const TodoRoutes = require('../api/todo/route/todo-route');
<% if (!differentStaticServer) {%>
const StaticDispatcher = require('../commons/static/index');
<% } %>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

const TodoRoutes = require('./todo-route');
const TodoRoutes = require('../api/todo/route/todo-route');

module.exports = class Routes {
static init(app, router) {
Expand Down

0 comments on commit 3d754d1

Please sign in to comment.