librectf-rust/server/easyctf/views/api/__init__.py

8 lines
150 B
Python

from flask import Blueprint
import admin
blueprint = Blueprint("api", __name__)
blueprint.register_blueprint(admin.blueprint, url_prefix="/admin")