netclock/countdown/__init__.py

7 lines
136 B
Python
Raw Normal View History

2020-09-12 10:58:38 +00:00
from flask import Blueprint
2020-09-12 17:51:47 +00:00
app = Blueprint('countdown', __name__, template_folder='templates')
2020-10-26 10:07:42 +00:00
2020-09-12 17:51:47 +00:00
from . import views
from . import api