gitea源码

12345678910111213
  1. // Copyright 2021 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package structs
  4. // Note contains information related to a git note
  5. type Note struct {
  6. // The content message of the git note
  7. Message string `json:"message"`
  8. // The commit that this note is attached to
  9. Commit *Commit `json:"commit"`
  10. }