mirror of
https://github.com/distribution/distribution
synced 2025-02-23 06:49:36 +01:00
13 lines
171 B
Go
13 lines
171 B
Go
//go:build go1.4
|
|
// +build go1.4
|
|
|
|
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func basicAuth(r *http.Request) (username, password string, ok bool) {
|
|
return r.BasicAuth()
|
|
}
|