diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-12 01:59:53 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-12 01:59:53 +0200 |
commit | 805cc777b083fee68a8834ebe1823d0b9dc6a00f (patch) | |
tree | e497602859f7e238072a31d20477db6a656f6482 /core | |
parent | 68307cee4259c6c4fded8124af7f993f0266a545 (diff) | |
download | go-git-805cc777b083fee68a8834ebe1823d0b9dc6a00f.tar.gz |
general: usage of the new Reference objects
Diffstat (limited to 'core')
-rw-r--r-- | core/object.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object.go b/core/object.go index 01dd660..e5f9a5e 100644 --- a/core/object.go +++ b/core/object.go @@ -51,6 +51,7 @@ type ObjectStorage interface { type ObjectType int8 const ( + InvalidObject ObjectType = 0 CommitObject ObjectType = 1 TreeObject ObjectType = 2 BlobObject ObjectType = 3 |