KrisKeshav
Update docstring for server entry point
c54ccdc unverified
raw
history blame contribute delete
332 Bytes
"""
This is the server entry point for openenv validate compatibility.
"""
import uvicorn
from src.api import app # noqa: F401
def main():
"""Starting the FastAPI server."""
uvicorn.run(
"src.api:app",
host="0.0.0.0",
port=7860,
reload=False,
)
if __name__ == "__main__":
main()