...

Source file src/github.com/lib/pq/user_other.go

Documentation: github.com/lib/pq

     1  // Package pq is a pure Go Postgres driver for the database/sql package.
     2  
     3  //go:build js || android || hurd || zos
     4  // +build js android hurd zos
     5  
     6  package pq
     7  
     8  func userCurrent() (string, error) {
     9  	return "", ErrCouldNotDetectUsername
    10  }
    11  

View as plain text