12 lines
224 B
Python
12 lines
224 B
Python
|
"""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
|