mirror of https://github.com/status-im/go-waku.git
12 lines
196 B
Go
12 lines
196 B
Go
|
package library
|
||
|
|
||
|
import "encoding/json"
|
||
|
|
||
|
func marshalJSON(result interface{}) (string, error) {
|
||
|
data, err := json.Marshal(result)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
return string(data), nil
|
||
|
}
|