Просмотр исходного кода

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

Javier Provecho Fernandez 8 лет назад
Родитель
Сommit
89f0acc2f8
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      auth.go

+ 2 - 0
auth.go

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