diff options
Diffstat (limited to 'conn_pool.go')
-rw-r--r-- | conn_pool.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conn_pool.go b/conn_pool.go index ad6b736..fb530b9 100644 --- a/conn_pool.go +++ b/conn_pool.go @@ -23,7 +23,7 @@ var ErrSessionExpired = errors.New("session expired") // TODO: expiration timer type ConnPool struct { locker sync.Mutex - conns map[string]*imapclient.Client + conns map[string]*imapclient.Client } func NewConnPool() *ConnPool { |