File size: 283 Bytes
4e8910b
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import uvicorn
from env import app

def main():
    """

    Main entry point for the OpenEnv server.

    This function satisfies the requirement for a 'main' function reference.

    """
    uvicorn.run(app, host="0.0.0.0", port=8000)

if __name__ == "__main__":
    main()