13 lines
156 B
Go
13 lines
156 B
Go
|
package steward
|
||
|
|
||
|
type (
|
||
|
Contribution struct {
|
||
|
Author string
|
||
|
Repo string
|
||
|
Week int64
|
||
|
Commits int
|
||
|
Additions int
|
||
|
Deletions int
|
||
|
}
|
||
|
)
|