class Application
  constructor: ->
    
  start: ->
    console.log 'App started'

    # Create your controllers here...
    
    # Then start backbone
    # Backbone.history.start()
    

@Application = Application
