mirror of https://github.com/status-im/consul.git
23 lines
598 B
Go
23 lines
598 B
Go
|
// Code generated by protoc-json-shim. DO NOT EDIT.
|
||
|
package ratelimit
|
||
|
|
||
|
import (
|
||
|
protojson "google.golang.org/protobuf/encoding/protojson"
|
||
|
)
|
||
|
|
||
|
// MarshalJSON is a custom marshaler for Spec
|
||
|
func (this *Spec) MarshalJSON() ([]byte, error) {
|
||
|
str, err := RatelimitMarshaler.Marshal(this)
|
||
|
return []byte(str), err
|
||
|
}
|
||
|
|
||
|
// UnmarshalJSON is a custom unmarshaler for Spec
|
||
|
func (this *Spec) UnmarshalJSON(b []byte) error {
|
||
|
return RatelimitUnmarshaler.Unmarshal(b, this)
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
RatelimitMarshaler = &protojson.MarshalOptions{}
|
||
|
RatelimitUnmarshaler = &protojson.UnmarshalOptions{DiscardUnknown: false}
|
||
|
)
|