* MM-37186: Update dependencies The split client libraries were excluded from being upgraded. See: https://github.com/splitio/go-split-commons/issues/56 https://mattermost.atlassian.net/browse/MM-37186 ```release-note NONE ``` * Ignore staticcheck deprecation warnings ```release-note NONE ```
11 строки
234 B
Go
11 строки
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
|
|
}
|