15 lines
145 B
Go
15 lines
145 B
Go
package steward
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type (
|
|
Commit struct {
|
|
Repo string
|
|
Sha1 string
|
|
Author string
|
|
Timestamp time.Time
|
|
}
|
|
)
|