]> git.phdru.name Git - m_librarian.git/blobdiff - m_librarian/web/app.py
Feat(web): Use CheetahTemplate
[m_librarian.git] / m_librarian / web / app.py
index 01b15dd70f106fd3ec0d0cc856b582bcdec551a0..3a95c8bd701c67716d9423a8fb90a58405f7027c 100644 (file)
@@ -1,6 +1,7 @@
-from bottle import route
+from bottle import route, cheetah_view
 
 
 @route('/')
-def hello():
-    return "Hello World!"
+@cheetah_view('index.tmpl')
+def index():
+    return {}