14 lines
211 B
Python
14 lines
211 B
Python
|
from sanic import Blueprint, response
|
||
|
|
||
|
bp = Blueprint(__name__)
|
||
|
|
||
|
|
||
|
@bp.get('/api/current_status')
|
||
|
async def get_cur_status(request):
|
||
|
pass
|
||
|
|
||
|
|
||
|
@bp.get('/api/status')
|
||
|
async def get_full_status(request):
|
||
|
pass
|