mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-09-11 01:52:30 +00:00
Add vendor (steam)
This commit is contained in:
13
vendor/github.com/Philipp15b/go-steam/netutil/url.go
generated
vendored
Normal file
13
vendor/github.com/Philipp15b/go-steam/netutil/url.go
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
package netutil
|
||||
|
||||
import (
|
||||
"net/url"
|
||||
)
|
||||
|
||||
func ToUrlValues(m map[string]string) url.Values {
|
||||
r := make(url.Values)
|
||||
for k, v := range m {
|
||||
r.Add(k, v)
|
||||
}
|
||||
return r
|
||||
}
|
Reference in New Issue
Block a user