docs(auth): add missing logs for auth.go

This commit is contained in:
Javier Provecho Fernandez 2017-07-02 16:54:49 +02:00
parent 1923b35983
commit 89f0acc2f8

View File

@ -10,9 +10,11 @@ import (
"strconv"
)
// AuthUserKey is the cookie name for user credential in basic auth
const AuthUserKey = "user"
type (
// Accounts defines a key/value for user/pass list of authorized logins
Accounts map[string]string
authPair struct {
Value string