(key string, value bool)
| 25 | } |
| 26 | |
| 27 | func (mc *MemConfig) StoreBool(key string, value bool) error { |
| 28 | return mc.StoreString(key, strconv.FormatBool(value)) |
| 29 | } |
| 30 | |
| 31 | func (mc *MemConfig) StoreTimestamp(key string, value time.Time) error { |
| 32 | return mc.StoreString(key, strconv.Itoa(int(value.Unix()))) |