You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Put(key string, value string) (*consulapi.WriteMeta, error)
put KVPair
LoadStruct(parent string, i interface{}) error
Load key/value to structure, basic usage:
varsstruct {
Namestring`consul:"default:Rob Pike"`// set default value if not exists keySizeint`consul:"default:100"`Urlstring`consul:"name:u;default:http://localhost"`// different key name is "n"Otherstruct { // nested keysName1string`consul:"default:no"`
}
}