You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

repo_note.go 247B

12345678910
  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. Message string `json:"message"`
  7. Commit *Commit `json:"commit"`
  8. }