13 lines
244 B
Python
13 lines
244 B
Python
|
import json
|
||
|
|
||
|
from common.web import requestsManager
|
||
|
|
||
|
|
||
|
class handler(requestsManager.asyncRequestHandler):
|
||
|
"""
|
||
|
Handler for /api/v1/status
|
||
|
"""
|
||
|
def asyncGet(self):
|
||
|
self.write(json.dumps({"status": 200, "server_status": 1}))
|
||
|
#self.finish()
|