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