also remove all flaskiness from static file serving. and reference all vendored scripts on the base tempĺate for simplicity.
9 lines
199 B
Python
9 lines
199 B
Python
from quart import Blueprint
|
|
|
|
|
|
amilk_ext: Blueprint = Blueprint("amilk", __name__, static_folder="static", template_folder="templates")
|
|
|
|
|
|
from .views_api import * # noqa
|
|
from .views import * # noqa
|