17 lines
271 B
Go
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)
|
|
}
|
|
|
|
|