You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
296 B
16 lines
296 B
package zookeeper |
|
|
|
import ( |
|
"encoding/json" |
|
|
|
"github.com/go-kratos/kratos/v2/registry" |
|
) |
|
|
|
func marshal(si *registry.ServiceInstance) ([]byte, error) { |
|
return json.Marshal(si) |
|
} |
|
|
|
func unmarshal(data []byte) (si *registry.ServiceInstance, err error) { |
|
err = json.Unmarshal(data, &si) |
|
return |
|
}
|
|
|