mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-25 19:21:54 +00:00
10 lines
199 B
Python
10 lines
199 B
Python
class Transport:
|
|
pass
|
|
|
|
class CLI:
|
|
def __init__(self, transport: Transport):
|
|
self.transport = transport
|
|
|
|
async def down(self):
|
|
return await self.transport.send_cmd("down")
|