// Copyright © 2016 Aaron Longwell // // Use of this source code is governed by an MIT licese. // Details in the LICENSE file. package trello import ( "net/url" ) type Arguments map[string]string func Defaults() Arguments { return make(Arguments) } func (args Arguments) ToURLValues() url.Values { v := url.Values{} for key, value := range args { v.Set(key, value) } return v }