Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

repo_refs.go 418B

123456789101112131415161718
  1. // Copyright 2018 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package structs
  4. // Reference represents a Git reference.
  5. type Reference struct {
  6. Ref string `json:"ref"`
  7. URL string `json:"url"`
  8. Object *GitObject `json:"object"`
  9. }
  10. // GitObject represents a Git object.
  11. type GitObject struct {
  12. Type string `json:"type"`
  13. SHA string `json:"sha"`
  14. URL string `json:"url"`
  15. }