/**
* TODO: add description of class * @author: * @class: <%= config[:route_name] %>Route * */
/* global define */ var <%= config %> = <%= config %> || {};
/* global define */ (function() {
'use strict'; define([ 'jquery', 'underscore', 'backbone', ], function($, _, Backbone) { <%= config[:app_name] %>.<%= config[:route_name]%>Route = Backbone.Router.extend({ //TODO: Define all your routes here routes: { }, //TODO: Function definition for routes here }); return <%= config[:app_name] %>.<%= config[:route_name] %>Route; });
}());