14 lines
183 B
Go
14 lines
183 B
Go
|
package json
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
)
|
||
|
|
||
|
type GoextJsonMarshaller interface {
|
||
|
PreGoJsonMarshal()
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
goextJsonMarshallerType = reflect.TypeOf((*GoextJsonMarshaller)(nil)).Elem()
|
||
|
)
|