10 lines
221 B
Python
10 lines
221 B
Python
|
# -*- coding: utf-8; mode: python -*-
|
||
|
"""
|
||
|
Static assets
|
||
|
"""
|
||
|
|
||
|
|
||
|
def includeme(config):
|
||
|
config.include('tailbone.static')
|
||
|
config.add_static_view('rattail_tutorial', 'rattail_tutorial.web:static', cache_max_age=3600)
|