mirror of
https://github.com/Balshgit/gpt_chat_bot.git
synced 2025-09-11 22:30:41 +03:00
10 lines
174 B
Python
10 lines
174 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint(
|
|
"bp",
|
|
__name__,
|
|
template_folder="./../client/html",
|
|
static_folder="./../client",
|
|
static_url_path="assets",
|
|
)
|