aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gogits/git-module/repo_object.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/gogits/git-module/repo_object.go')
-rw-r--r--vendor/github.com/gogits/git-module/repo_object.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/vendor/github.com/gogits/git-module/repo_object.go b/vendor/github.com/gogits/git-module/repo_object.go
deleted file mode 100644
index 416ee459..00000000
--- a/vendor/github.com/gogits/git-module/repo_object.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2014 The Gogs Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
-
-package git
-
-type ObjectType string
-
-const (
- OBJECT_COMMIT ObjectType = "commit"
- OBJECT_TREE ObjectType = "tree"
- OBJECT_BLOB ObjectType = "blob"
- OBJECT_TAG ObjectType = "tag"
-)