5 lines
135 B
Python
5 lines
135 B
Python
from flask import Blueprint
|
|
|
|
app = Blueprint('countdown', __name__, template_folder='templates')
|
|
from . import views
|
|
from . import api
|