mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
10 lines
202 B
Go
10 lines
202 B
Go
// Package pq is a pure Go Postgres driver for the database/sql package.
|
|
|
|
// +build js android hurd illumos zos
|
|
|
|
package pq
|
|
|
|
func userCurrent() (string, error) {
|
|
return "", ErrCouldNotDetectUsername
|
|
}
|