empact/steward/contribution.go

13 lines
156 B
Go
Raw Normal View History

2015-01-11 19:21:16 +07:00
package steward
type (
Contribution struct {
Author string
Repo string
Week int64
Commits int
Additions int
Deletions int
}
)