Files
bitchmin/server/app/api/__init__.py
Fergal Moran 256612f9cb Initial commit
2020-09-04 04:15:12 +01:00

11 lines
215 B
Python

from flask import Blueprint
api = Blueprint('api', __name__)
from app.api import auth
from app.api import dns
from app.api import lights
from app.api import ping
from app.api import user
from app.api import debug