2023-09-24 06:32:49 +03:00

10 lines
174 B
Python

from flask import Blueprint
bp = Blueprint(
"bp",
__name__,
template_folder="./../client/html",
static_folder="./../client",
static_url_path="assets",
)