ANI00's picture
Fix: Add main() callable and correct entry point
1dfc5c4 verified
raw
history blame contribute delete
297 Bytes
"""
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()