12 lines
355 B
Python
12 lines
355 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from __future__ import annotations
|
|
|
|
from flask import Blueprint
|
|
|
|
admin_api_bp = Blueprint("admin_api", __name__, url_prefix="/yuyx/api")
|
|
|
|
# Import side effects: register routes on blueprint
|
|
from routes.admin_api import core as _core # noqa: F401
|
|
from routes.admin_api import update as _update # noqa: F401
|