tls-utils/source/helpers/file.py

8 lines
107 B
Python
Raw Permalink Normal View History

2026-04-03 01:19:04 +02:00
def file_read(path):
handle = open(path, "r")
content = handle.read()
handle.close()
return content