Skip to content
Snippets Groups Projects
__init__.py 167 B
Newer Older
Luka's avatar
Luka committed
import os
from flask import Blueprint

web = Blueprint(
    "web",
    __name__,
    url_prefix="/web",
    static_folder="static",
    template_folder="templates",
)