Contribution type

This commit is contained in:
2015-01-11 19:21:16 +07:00
parent 69c0aec575
commit 75c195a709
+12
View File
@@ -0,0 +1,12 @@
package steward
type (
Contribution struct {
Author string
Repo string
Week int64
Commits int
Additions int
Deletions int
}
)