Dmitry Afanasyev a95403f594
Feat/fix start (#1)
format code
2023-09-16 20:09:40 +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",
)