mirror of
https://github.com/Telecominfraproject/oopt-gnpy-api.git
synced 2025-10-29 01:02:18 +00:00
13 lines
241 B
Python
13 lines
241 B
Python
#!/usr/bin/env python
|
|
|
|
"""GNPy official API
|
|
"""
|
|
from flask import Flask
|
|
|
|
API_VERSION = "/api/v0.1"
|
|
|
|
app = Flask(__name__)
|
|
|
|
import gnpyapi.core.route.path_request_route # noqa: E402
|
|
import gnpyapi.core.route.status_route # noqa: F401, E402
|