go-waku/library/response.go
2023-08-10 09:30:38 -04:00

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
}