1
0
Fork 0
This repository has been archived on 2025-01-11. You can view files and clone it, but cannot push or open issues or pull requests.
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