mirror of
https://github.com/lukaszraczylo/git-velocity.git
synced 2026-06-05 22:43:56 +00:00
11 lines
222 B
Go
11 lines
222 B
Go
package models
|
|
|
|
// RawData holds the raw collected data from GitHub
|
|
type RawData struct {
|
|
Commits []Commit
|
|
PullRequests []PullRequest
|
|
Reviews []Review
|
|
Issues []Issue
|
|
IssueComments []IssueComment
|
|
}
|