Files
bitchmin/bitchmin-api/app/api/__init__.py
2020-11-04 18:36:08 +00: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