1
0
Fork 0

Contribution type

This commit is contained in:
Gregory Eremin 2015-01-11 19:21:16 +07:00
parent 69c0aec575
commit 75c195a709
1 changed files with 12 additions and 0 deletions

12
steward/contribution.go Normal file
View File

@ -0,0 +1,12 @@
package steward
type (
Contribution struct {
Author string
Repo string
Week int64
Commits int
Additions int
Deletions int
}
)