MCPcopy Create free account
hub / github.com/c1982/swe-dashboard / Commit

Struct Commit

internal/models/commit.go:5–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import "time"
4
5type Commit struct {
6 ID string `json:"id"`
7 ShortID string `json:"short_id"`
8 Title string `json:"title"`
9 AuthorName string `json:"author_name"`
10 AuthorEmail string `json:"author_email"`
11 CommitterName string `json:"committer_name"`
12 CommitterEmail string `json:"committer_email"`
13 Message string `json:"message"`
14 Additions int `json:"additions"`
15 Deletions int `json:"deletions"`
16 Total int `json:"total"`
17 ProjectID int `json:"project_id"`
18 CommittedDate time.Time `json:"committed_date"`
19 CreatedAt time.Time `json:"created_at"`
20}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected