about summary refs log tree commit diff
path: root/.venv/lib/python3.12/site-packages/ellipticcurve/utils/file.py
blob: c7b1df731bc27d2153793ff15475cf832e258335 (plain)
1
2
3
4
5
6
7
8
9
class File:

    @classmethod
    def read(cls, path, mode="r"):
        with open(path, mode) as blob:
            content = blob.read()
        return content