Skip to content

Instantly share code, notes, and snippets.

View chrigl's full-sized avatar
🇺🇦

Christoph Glaubitz chrigl

🇺🇦
View GitHub Profile
@rgarcia
rgarcia / basic.go
Created June 11, 2014 17:27
golang basic auth transport
import (
"encoding/base64"
"fmt"
"net/http"
)
type BasicAuthTransport struct {
Username string
Password string
}