blob: 8727a3cd15c9f243ad4f702e889d2e925d810448 [file] [log] [blame]
// +build go1.4
package handlers
import (
"net/http"
)
func basicAuth(r *http.Request) (username, password string, ok bool) {
return r.BasicAuth()
}