state.go 141 B

12345678
  1. package state
  2. type State struct {
  3. Counter struct {
  4. Request int64 `json:"request"`
  5. Failure int64 `json:"failure"`
  6. } `json:"counter"`
  7. }