gitea/modules/git/repo_object.go

20 lines
499 B
Go
Raw Normal View History

2016-11-03 23:16:01 +01:00
// 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
2016-12-22 10:30:52 +01:00
// ObjectType git object type
2016-11-03 23:16:01 +01:00
type ObjectType string
const (
2016-12-22 10:30:52 +01:00
// ObjectCommit commit object type
ObjectCommit ObjectType = "commit"
// ObjectTree tree object type
ObjectTree ObjectType = "tree"
// ObjectBlob blob object type
ObjectBlob ObjectType = "blob"
// ObjectTag tag object type
ObjectTag ObjectType = "tag"
2016-11-03 23:16:01 +01:00
)