qrz/vendor/github.com/lib/pq/user_other.go
Paul Lecuq 0cae2e5138
All checks were successful
continuous-integration/drone/push Build is passing
updated dependencies
2022-03-26 12:13:52 +01:00

11 lines
234 B
Go

// Package pq is a pure Go Postgres driver for the database/sql package.
//go:build js || android || hurd || zos
// +build js android hurd zos
package pq
func userCurrent() (string, error) {
return "", ErrCouldNotDetectUsername
}