mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-27 20:39:19 +00:00
12 lines
226 B
Python
12 lines
226 B
Python
"""hyperglass web app initiator."""
|
|
|
|
|
|
def start():
|
|
"""Start the web server with Uvicorn ASGI."""
|
|
import uvicorn
|
|
from hyperglass.hyperglass import app, APP_PARAMS
|
|
|
|
uvicorn.run(app, **APP_PARAMS)
|
|
|
|
|
|
app = start()
|