kopia lustrzana https://github.com/mate-dev/meshtastic-matrix-relay
7 wiersze
153 B
Python
7 wiersze
153 B
Python
![]() |
import yaml
|
||
|
from yaml.loader import SafeLoader
|
||
|
|
||
|
relay_config = {}
|
||
|
with open("config.yaml", "r") as f:
|
||
|
relay_config = yaml.load(f, Loader=SafeLoader)
|