4 lines
124 B
Python
4 lines
124 B
Python
def includeme(config):
|
|
config.add_static_view('static', 'static', cache_max_age=3600)
|
|
config.add_route('home', '/')
|