/** * AltGit - altgit * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. * * @author Paolo Lulli * @copyright Paolo Lulli 2026 */ package gitrepo type BranchLink struct { Name string URL string Active bool } type FileEntry struct { Path string CommitCount int } type CommitEntry struct { Hash string Short string Message string Author string Date string } type RefEntry struct { Kind string Name string Short string Hash string } type RepoInfo struct { Name string Description string LastCommit string Branch string }