projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch '6235-go-sdk-discovery' closes #6235
[arvados.git]
/
services
/
arv-git-httpd
/
basic_auth_go14.go
1
// +build go1.4
2
3
package main
4
5
import (
6
"net/http"
7
)
8
9
func BasicAuth(r *http.Request) (username, password string, ok bool) {
10
return r.BasicAuth()
11
}