empact/steward/state.go

13 lines
106 B
Go
Raw Normal View History

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