mail_triage / server.py
anvisinghh's picture
Upload 11 files (#7)
4e8910b
Raw
History Blame
283 Bytes
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()