empact/steward/commit.go

15 lines
145 B
Go
Raw Normal View History

2015-01-10 19:30:53 +07:00
package steward
import (
"time"
)
type (
Commit struct {
Repo string
Sha1 string
Author string
Timestamp time.Time
}
)