github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/builtins/types/boolean/init.go (about)

     1  package boolean
     2  
     3  import (
     4  	"github.com/lmorg/murex/lang"
     5  	"github.com/lmorg/murex/lang/types"
     6  )
     7  
     8  func init() {
     9  	// Register data types
    10  	lang.Marshallers[types.Boolean] = marshal
    11  	lang.Unmarshallers[types.Boolean] = unmarshal
    12  }