Source File
dbtest.go
Belonging Package
golang.org/x/pkgsite/internal/testing/dbtest
package dbtest
import (
func ( string) string {
var (
= getEnv("GO_DISCOVERY_DATABASE_TEST_USER", "postgres")
= getEnv("GO_DISCOVERY_DATABASE_TEST_PASSWORD", "")
= getEnv("GO_DISCOVERY_DATABASE_TEST_HOST", "localhost")
= getEnv("GO_DISCOVERY_DATABASE_TEST_PORT", "5432")
)
:= fmt.Sprintf("postgres://%s/%s?sslmode=disable&user=%s&password=%s&port=%s&timezone=UTC",
, , url.QueryEscape(), url.QueryEscape(), url.QueryEscape())
return
}
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |