Spaces:
Sleeping
Sleeping
KrisKeshav commited on
Update docstring for server entry point
Browse files- server/app.py +2 -2
server/app.py
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
"""
|
| 2 |
-
|
| 3 |
"""
|
| 4 |
import uvicorn
|
| 5 |
from src.api import app # noqa: F401
|
| 6 |
|
| 7 |
|
| 8 |
def main():
|
| 9 |
-
"""
|
| 10 |
uvicorn.run(
|
| 11 |
"src.api:app",
|
| 12 |
host="0.0.0.0",
|
|
|
|
| 1 |
"""
|
| 2 |
+
This is the server entry point for openenv validate compatibility.
|
| 3 |
"""
|
| 4 |
import uvicorn
|
| 5 |
from src.api import app # noqa: F401
|
| 6 |
|
| 7 |
|
| 8 |
def main():
|
| 9 |
+
"""Starting the FastAPI server."""
|
| 10 |
uvicorn.run(
|
| 11 |
"src.api:app",
|
| 12 |
host="0.0.0.0",
|