Skip to content

Instantly share code, notes, and snippets.

@cyx
Created April 28, 2014 21:58
Show Gist options
  • Save cyx/11385265 to your computer and use it in GitHub Desktop.
Save cyx/11385265 to your computer and use it in GitHub Desktop.
class Frontend < Cuba
use Rack::Protection
end
class API < Cuba
end
class App < Cuba
on "api" do
run API
end
on default do
run Frontend
en
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment