mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 18:10:16 +00:00
15 lines
230 B
Go
15 lines
230 B
Go
package helper
|
|
|
|
import (
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
// GetValueOrAlt get value or alt
|
|
func GetValueOrAlt(values url.Values, key, alt string) string {
|
|
if val, ok := values[key]; ok {
|
|
return strings.Join(val, ",")
|
|
}
|
|
return alt
|
|
}
|