Files
git-velocity/internal/domain/models/rawdata.go
T
2025-12-10 21:09:25 +00:00

10 lines
188 B
Go

package models
// RawData holds the raw collected data from GitHub
type RawData struct {
Commits []Commit
PullRequests []PullRequest
Reviews []Review
Issues []Issue
}