Files
navidrome/tests/test_helper.go
T
2016-02-24 18:06:49 -05:00

17 lines
271 B
Go

package test
import "fmt"
const (
testUser = "deluan"
testPassword = "wordpass"
testClient = "test"
testVersion = "1.0.0"
)
func AddParams(url string) string {
return fmt.Sprintf("%s?u=%s&p=%s&c=%s&v=%s", url, testUser, testPassword, testClient, testVersion)
}