mirror of
https://github.com/lukaszraczylo/git-velocity.git
synced 2026-06-05 22:43:56 +00:00
10 lines
188 B
Go
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
|
|
}
|