mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-23 00:13:30 +01:00
11 lines
234 B
Go
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
|
|
}
|