KrisKeshav commited on
Commit
c54ccdc
·
unverified ·
1 Parent(s): 542893e

Update docstring for server entry point

Browse files
Files changed (1) hide show
  1. server/app.py +2 -2
server/app.py CHANGED
@@ -1,12 +1,12 @@
1
  """
2
- server/app.py 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
- """Start the FastAPI server."""
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",