goext/gojson/interfaces.go
Mike Schwörer 7fc73f1e93
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m51s
v0.0.470 Add GoextJsonMarshaller interface to call when marshalling json via gojson
2024-06-11 19:34:48 +02:00

14 lines
183 B
Go

package json
import (
"reflect"
)
type GoextJsonMarshaller interface {
PreGoJsonMarshal()
}
var (
goextJsonMarshallerType = reflect.TypeOf((*GoextJsonMarshaller)(nil)).Elem()
)