1
0
Fork 0
empact/steward/state.go

13 lines
106 B
Go
Raw Normal View History

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