Added bento :)
This commit is contained in:
+19
-18
@@ -12,11 +12,12 @@ type Repository struct {
|
||||
}
|
||||
|
||||
type Commit struct {
|
||||
SHA string
|
||||
Message string
|
||||
Author string
|
||||
Timestamp time.Time
|
||||
RepoName string
|
||||
SHA string
|
||||
Message string
|
||||
Author string
|
||||
AuthorEmail string
|
||||
Timestamp time.Time
|
||||
RepoName string
|
||||
}
|
||||
|
||||
type LanguageStats struct {
|
||||
@@ -26,9 +27,9 @@ type LanguageStats struct {
|
||||
}
|
||||
|
||||
type DateStats struct {
|
||||
Date time.Time
|
||||
Count int
|
||||
Day string
|
||||
Date time.Time
|
||||
Count int
|
||||
Day string
|
||||
}
|
||||
|
||||
type TagStats struct {
|
||||
@@ -37,15 +38,15 @@ type TagStats struct {
|
||||
}
|
||||
|
||||
type UserStats struct {
|
||||
Username string
|
||||
TotalCommits int
|
||||
TotalRepositories int
|
||||
Languages []LanguageStats
|
||||
Tags []TagStats
|
||||
CommitsByWeekday []DateStats
|
||||
CommitsByMonth []DateStats
|
||||
TopRepositories []Repository
|
||||
MostActiveMonth string
|
||||
MostActiveDay string
|
||||
Username string
|
||||
TotalCommits int
|
||||
TotalRepositories int
|
||||
Languages []LanguageStats
|
||||
Tags []TagStats
|
||||
CommitsByWeekday []DateStats
|
||||
CommitsByMonth []DateStats
|
||||
TopRepositories []Repository
|
||||
MostActiveMonth string
|
||||
MostActiveDay string
|
||||
AverageCommitsPerDay float64
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user