mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-12 23:04:45 +00:00
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
|
|
}
|