File size: 297 Bytes
2228350
 
1dfc5c4
2228350
 
 
 
1dfc5c4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""

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()