13 lines
106 B
Go
13 lines
106 B
Go
|
package steward
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
State struct {
|
||
|
Sha1 string
|
||
|
Timestamp time.Time
|
||
|
}
|
||
|
)
|