import uvicorn # Import the ACTUAL app from your environment folder from envs.free_guy.server.app import app def main(): # This is the main function the grader is begging for uvicorn.run("envs.free_guy.server.app:app", host="0.0.0.0", port=7860) if __name__ == "__main__": main()