mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 02:01:55 +00:00
8 lines
162 B
Python
8 lines
162 B
Python
from BIRD import Config
|
|
from BIRD.Config import DeviceProtocolConfig
|
|
|
|
cf = Config()
|
|
cf.add(DeviceProtocolConfig(name="foo", scan_time=42))
|
|
cf.write("test.conf")
|
|
|