mirror of https://github.com/status-im/consul.git
9 lines
125 B
Go
9 lines
125 B
Go
|
package sprawl
|
||
|
|
||
|
import "encoding/json"
|
||
|
|
||
|
func jd(v any) string {
|
||
|
b, _ := json.MarshalIndent(v, "", " ")
|
||
|
return string(b)
|
||
|
}
|