dashboard/backend/web/__init__.py
Philipp Rothmann 07a2c46227 add backend
2022-10-21 12:44:04 +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",
)