git.zd.zone/hrpc/hrpc@v0.0.12/database/dgraph/option.go (about) 1 package dgraph 2 3 type Option struct { 4 Targets []string `json:"targets"` 5 Credential credential `json:"credential"` 6 } 7 8 type credential struct { 9 User string `json:"user"` 10 Password string `json:"password"` 11 Namespace uint64 `json:"namespace"` 12 }