timestatestore.go 176 B

12345678910111213
  1. package main
  2. import "time"
  3. type TimeState struct {
  4. lastSuccessUpperTime time.Time
  5. }
  6. type TimeStateStore struct {
  7. }
  8. func (t TimeStateStore) SaveTimeState(ts TimeState) {
  9. }