0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-23 18:21:54 +00:00
bird/python/BIRD/Protocol/Static.py

7 lines
142 B
Python
Raw Normal View History

2023-05-21 09:58:25 +00:00
from BIRD.Protocol import Protocol, ProtocolList
class StaticProtocol(Protocol):
match = "Static"
ProtocolList.register(StaticProtocol)