diff options
author | Frederick Muriuki Muriithi | 2024-12-19 15:08:10 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-12-19 15:08:10 -0600 |
commit | 959fb4bb4ec50af4bc28a4de1455d25ab82b10e8 (patch) | |
tree | 45f66164d4eac65c55dfa4aa7eda471e00299743 /uploader | |
parent | f44988df313ff2d40698589d092ad35f4fbf7583 (diff) | |
download | gn-uploader-959fb4bb4ec50af4bc28a4de1455d25ab82b10e8.tar.gz |
Make files into a module of its own.
Diffstat (limited to 'uploader')
-rw-r--r-- | uploader/files/__init__.py | 4 | ||||
-rw-r--r-- | uploader/files/functions.py (renamed from uploader/files.py) | 0 |
2 files changed, 4 insertions, 0 deletions
diff --git a/uploader/files/__init__.py b/uploader/files/__init__.py new file mode 100644 index 0000000..4a62409 --- /dev/null +++ b/uploader/files/__init__.py @@ -0,0 +1,4 @@ +from .functions import (fullpath, + save_file, + chunked_binary_read, + sha256_digest_over_file) diff --git a/uploader/files.py b/uploader/files/functions.py index d37a53e..d37a53e 100644 --- a/uploader/files.py +++ b/uploader/files/functions.py |