class Server: def __init__(self, port, config) -> None: self.port = port self.config = config def start(self): return def stop(self): return