0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-23 18:21:54 +00:00
bird/python/BIRD/Protocol/RAdv.py
Maria Matejka 04f96b6705 Python CLI Package: Protocol scaffolding for Kernel, Device, Direct, Babel and RAdv
This choice comes from my own local setup where I use exactly these protocols.
Other protocols will be added later.
2023-05-23 13:44:48 +02:00

7 lines
136 B
Python

from BIRD.Protocol import Protocol, ProtocolList
class RAdvProtocol(Protocol):
match = "RAdv"
ProtocolList.register(RAdvProtocol)