mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-01-11 03:21:53 +00:00
7 lines
139 B
Python
7 lines
139 B
Python
|
from BIRD.Protocol import Protocol, ProtocolList
|
||
|
|
||
|
class BabelProtocol(Protocol):
|
||
|
match = "Babel"
|
||
|
|
||
|
ProtocolList.register(BabelProtocol)
|