1
0
Fork 0
empact/steward/commit.go

15 lines
145 B
Go

package steward
import (
"time"
)
type (
Commit struct {
Repo string
Sha1 string
Author string
Timestamp time.Time
}
)