Spaces:
Sleeping
Sleeping
| """ | |
| Server Application Module | |
| Entry point for Content Moderation OpenEnv | |
| """ | |
| from server.main import app | |
| def main(): | |
| """Main entry point for the server application""" | |
| import uvicorn | |
| uvicorn.run(app, host="0.0.0.0", port=7860) | |
| if __name__ == "__main__": | |
| main() | |