freshrss2pocket/helpers.py

12 lines
224 B
Python
Raw Normal View History

2023-04-26 17:42:13 +02:00
"""Helper functions for YouTube2FreshRSS."""
import json
def read_config_file():
"""Read secrets JSON file."""
with open("config.json", "rb") as config_file:
data = json.load(config_file)
return data