1234567891011121314151617181920212223242526272829 |
- package core
- import "encoding/json"
- var _ = json.Marshaler(&AvoidPods{})
- var _ = json.Unmarshaler(&AvoidPods{})
- func (AvoidPods) MarshalJSON() ([]byte, error) { panic("do not marshal internal struct") }
- func (*AvoidPods) UnmarshalJSON([]byte) error { panic("do not unmarshal to internal struct") }
|