dashboard/web/__init__.py

11 lines
167 B
Python
Raw Normal View History

2022-04-13 10:27:17 +02:00
import os
from flask import Blueprint
web = Blueprint(
"web",
__name__,
url_prefix="/web",
static_folder="static",
template_folder="templates",
)