4 lines
159 B
Python
4 lines
159 B
Python
def routes(config):
|
|
config.add_route('index', '/')
|
|
config.add_route('sheet', '/sheet/{uri:.*}', factory='ttfrog.webserver.controllers.CharacterSheet')
|