dashboard/web/__init__.py
2022-04-13 10:27:17 +02:00

10 lines
167 B
Python

import os
from flask import Blueprint
web = Blueprint(
"web",
__name__,
url_prefix="/web",
static_folder="static",
template_folder="templates",
)