aboutsummaryrefslogtreecommitdiff
path: root/object/signed/commit/commit.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/signed/commit/commit.go')
-rw-r--r--object/signed/commit/commit.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/object/signed/commit/commit.go b/object/signed/commit/commit.go
deleted file mode 100644
index cd0ff197..00000000
--- a/object/signed/commit/commit.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package signedcommit
-
-import objectid "codeberg.org/lindenii/furgit/object/id"
-
-// Commit represents the payload and signatures parsed from a raw comit object.
-type Commit struct {
- body []byte
- payload []byteRange
- signatures map[objectid.Algorithm][]byteRange
-}
-
-type byteRange struct {
- start int
- end int
-}