7 lines
94 B
Python
7 lines
94 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
app = Blueprint('countdown', __name__)
|
||
|
|
||
|
import views
|
||
|
import apii
|