Toloka2WebV2/app/api/__init__.py

8 lines
136 B
Python
Raw Normal View History

2024-09-23 12:15:53 -04:00
from flask import Blueprint
2024-09-23 12:17:25 -04:00
api_bp = Blueprint("api", __name__)
2024-09-23 12:15:53 -04:00
from .titles import *
from .toloka import *
2024-09-23 12:17:25 -04:00
from .config_api import *