diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-11-28 15:17:18 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-11-28 15:17:18 +0530 |
commit | 82d5136c1b03efbb99931884dd75ab1160689ceb (patch) | |
tree | 3095f344055c4ad54a8238599839fa0088054fbd /models | |
parent | a3ead3d67520704eda55a74841b00d5766728fab (diff) |
Refactoring project - Introducing handlers,models and utils- Updating previous hasher and idgen func + formatting
Diffstat (limited to 'models')
-rw-r--r-- | models/idhash-pair.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/models/idhash-pair.go b/models/idhash-pair.go new file mode 100644 index 0000000..b78dcb7 --- /dev/null +++ b/models/idhash-pair.go @@ -0,0 +1,6 @@ +package models + +type FileHashPair struct { + ID string `json:"id"` + FileHash string `json:"fileHash"` +} |