1
0
Fork 0
empact/steward/state.go

13 lines
106 B
Go

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