mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
6 lines
143 B
Python
6 lines
143 B
Python
"""API endpoints package."""
|
|
from flask import Blueprint
|
|
|
|
api_endpoints = Blueprint('api', __name__, url_prefix="/api")
|
|
|
|
from . import generate |