mirror of
https://github.com/Telecominfraproject/openafc_final.git
synced 2026-01-27 02:22:02 +00:00
13 lines
208 B
Python
13 lines
208 B
Python
# Entry point for the RAT application
|
|
import ratapi
|
|
|
|
# Flask application
|
|
app = ratapi.create_app(
|
|
config_override={
|
|
'APPLICATION_ROOT': '/fbrat',
|
|
}
|
|
)
|
|
|
|
# Expose WSGI
|
|
application = app.wsgi_app
|