package lobsters type UserAPIKey struct { Key string `json:"key"` Nonce string `json:"nonce"` Push bool `json:"push"` API int `json:"api"` } func (sys *System) Connect(sysURL string) error { // Credentials credentials := make(map[string]string) if sys.config == nil { sys.config = make(map[string]interface{}) } sys.config["url"] = sysURL sys.config["credentials"] = credentials return nil }