mirror of
https://github.com/status-im/consul.git
synced 2025-02-08 20:05:09 +00:00
Co-authored-by: R.B. Boyer <4903+rboyer@users.noreply.github.com> Co-authored-by: R.B. Boyer <rb@hashicorp.com> Co-authored-by: Freddy <freddygv@users.noreply.github.com>
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)
|
|
}
|