mirror of
https://github.com/fergalmoran/bitchmin.git
synced 2026-01-10 02:36:45 +00:00
11 lines
215 B
Python
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
|