mirror of
https://github.com/kennethreitz-archive/reflog.git
synced 2026-06-21 15:50:58 +00:00
13 lines
196 B
Python
13 lines
196 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from flask import Module, g, render_template
|
|
|
|
index = Module(__name__)
|
|
|
|
|
|
__all__ = ('index',)
|
|
|
|
@index.route('/')
|
|
def get_index():
|
|
return render_template('index.html')
|