mirror of
https://github.com/Telecominfraproject/oopt-gnpy-api.git
synced 2025-10-29 17:12:32 +00:00
9 lines
207 B
Python
9 lines
207 B
Python
# coding: utf-8
|
|
from gnpyapi.core import app
|
|
from gnpyapi.core import API_VERSION
|
|
|
|
|
|
@app.route(API_VERSION + '/status', methods=['GET'])
|
|
def api_status():
|
|
return {"version": "v0.1", "status": "ok"}, 200
|