aboutsummaryrefslogtreecommitdiff
path: root/git2c/git_types.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-04-05 21:27:17 +0800
committerRunxi Yu <me@runxiyu.org>2025-04-05 21:27:17 +0800
commite0635b47c2f30719e1ea026812af85c988632c0e (patch)
treef112904c018dc294cf6f902423745f1f1932449c /git2c/git_types.go
parentExport symbols from database.go (diff)
downloadforge-e0635b47c2f30719e1ea026812af85c988632c0e.tar.gz
forge-e0635b47c2f30719e1ea026812af85c988632c0e.tar.zst
forge-e0635b47c2f30719e1ea026812af85c988632c0e.zip
Move things to internal/v0.1.23
Diffstat (limited to 'git2c/git_types.go')
-rw-r--r--git2c/git_types.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/git2c/git_types.go b/git2c/git_types.go
deleted file mode 100644
index da90db6..0000000
--- a/git2c/git_types.go
+++ /dev/null
@@ -1,22 +0,0 @@
-package git2c
-
-type Commit struct {
- Hash string
- Author string
- Email string
- Date string
- Message string
-}
-
-type FilenameContents struct {
- Filename string
- Content []byte
-}
-
-type TreeEntry struct {
- Name string
- Mode string
- Size uint64
- IsFile bool
- IsSubtree bool
-}