home: fix alignment

This commit is contained in:
Stanislav Chzhen 2024-03-14 17:40:07 +03:00
parent 7f11807ff1
commit ffb4b9a65f
1 changed files with 1 additions and 1 deletions

View File

@ -54,11 +54,11 @@ func (s *session) deserialize(data []byte) bool {
// Auth is the global authentication object.
type Auth struct {
trustedProxies netutil.SubnetSet
db *bbolt.DB
rateLimiter *authRateLimiter
sessions map[string]*session
users []webUser
trustedProxies netutil.SubnetSet
lock sync.Mutex
sessionTTL uint32
}