Added bento :)

This commit is contained in:
2026-05-01 14:10:22 -06:00
parent fec14022cd
commit 9ea2cf8c34
17 changed files with 1304 additions and 253 deletions
+19 -18
View File
@@ -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
}