LearnGO/go/pkg/mod/github.com/lib/pq@v1.10.9/user_other.go
2024-09-19 21:38:24 -04: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
}