diff options
Diffstat (limited to 'modules/structs/repo_refs.go')
-rw-r--r-- | modules/structs/repo_refs.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/structs/repo_refs.go b/modules/structs/repo_refs.go new file mode 100644 index 0000000..6ffbc74 --- /dev/null +++ b/modules/structs/repo_refs.go @@ -0,0 +1,18 @@ +// Copyright 2018 The Gitea Authors. All rights reserved. +// SPDX-License-Identifier: MIT + +package structs + +// Reference represents a Git reference. +type Reference struct { + Ref string `json:"ref"` + URL string `json:"url"` + Object *GitObject `json:"object"` +} + +// GitObject represents a Git object. +type GitObject struct { + Type string `json:"type"` + SHA string `json:"sha"` + URL string `json:"url"` +} |