from server.server import main if __name__ == "__main__": import asyncio try: asyncio.run(main()) except KeyboardInterrupt: pass