11 lines
187 B
Python
11 lines
187 B
Python
|
from syncthing_monitor.config_xml import parse_api_key
|
||
|
|
||
|
|
||
|
def loop():
|
||
|
api_key = parse_api_key()
|
||
|
print("Found API Key: {0}".format(api_key))
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
loop()
|