This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App = Syro.new do | |
on 'wiki' do | |
if root? | |
run PageRouter, page: 'wiki' | |
else | |
run UtilityRouter | |
end | |
end | |
on :page do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App = Syro.new do | |
on :token do | |
at 'page1' do | |
get { res.text 'page1' } | |
end | |
at 'page2' do | |
get { res.text 'page2' } | |
end |