]> git.phdru.name Git - m_librarian.git/blob - m_librarian/web/app.py
Feat(web): Use CheetahTemplate
[m_librarian.git] / m_librarian / web / app.py
1 from bottle import route, cheetah_view
2
3
4 @route('/')
5 @cheetah_view('index.tmpl')
6 def index():
7     return {}