Skip to content

Instantly share code, notes, and snippets.

@jphager2
Last active November 1, 2016 20:12
Show Gist options
  • Save jphager2/db0d33ed21b0c590935bb07f7bb53b18 to your computer and use it in GitHub Desktop.
Save jphager2/db0d33ed21b0c590935bb07f7bb53b18 to your computer and use it in GitHub Desktop.
# ...
class JkRowlingApp < Pakyow::App
router do
get "books" do # Inherited State
send "are cool"
end
end
end
class AnthonyBourdainApp < MyApp
router do
get "food" do # "Global" State
send "is good"
end
end
end
Pakyow.configure do
mount JkRowlingApp, at: "jk-rowling"
mount AnthonyBourdainApp, at: "anthony-bourdain" do
router do
get "no" do # Instance State
send "reservations"
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment