mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 18:21:54 +00:00
7 lines
142 B
Python
7 lines
142 B
Python
from BIRD.Protocol import Protocol, ProtocolList
|
|
|
|
class StaticProtocol(Protocol):
|
|
match = "Static"
|
|
|
|
ProtocolList.register(StaticProtocol)
|