elstat/blueprints/api.py

14 lines
211 B
Python
Raw Normal View History

2018-07-07 22:46:28 +00:00
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