File size: 163 Bytes
9abf365
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""
General-purpose utility functions.
"""

def read_key(file_path: str = "key.txt"):
    with open(file_path, "r") as fo:
        key = fo.read()
    return key