mirror of
https://github.com/Telecominfraproject/oopt-gnpy-api.git
synced 2025-10-29 17:12:32 +00:00
10 lines
161 B
Python
10 lines
161 B
Python
#!/usr/bin/env python
|
|
|
|
"""GNPy official API
|
|
"""
|
|
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
import gnpyapi.core.route.path_request_route # noqa: F401, E402
|