code.gitea.io/gitea@v1.22.3/modules/structs/repo_note.go (about) 1 // Copyright 2021 The Gitea Authors. All rights reserved. 2 // SPDX-License-Identifier: MIT 3 4 package structs 5 6 // Note contains information related to a git note 7 type Note struct { 8 Message string `json:"message"` 9 Commit *Commit `json:"commit"` 10 }