import asyncio from .server import Server if __name__ == '__main__': server = Server('127.0.0.1', 5555, 5554) asyncio.run(server.up())