mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-28 02:23:21 -07:00
consolidate api endpoints into own module and flask Blueprint
This commit is contained in:
6
WebHostLib/api/__init__.py
Normal file
6
WebHostLib/api/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
"""API endpoints package."""
|
||||
from flask import Blueprint
|
||||
|
||||
api_endpoints = Blueprint('api', __name__, url_prefix="/api")
|
||||
|
||||
from . import generate
|
||||
Reference in New Issue
Block a user