Skip to content

Instantly share code, notes, and snippets.

@adjohu
Created January 18, 2012 17:37
Show Gist options
  • Save adjohu/1634363 to your computer and use it in GitHub Desktop.
Save adjohu/1634363 to your computer and use it in GitHub Desktop.
require('lib/setup')
Spine = require('spine')
class App extends Spine.Controller
constructor: ->
super
@log 'lol'
@routes
'/galleries/:id': (params) ->
@log 'test with id'
'/galleries': ->
@log 'test'
module.exports = App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment