aboutsummaryrefslogtreecommitdiff
path: root/conn_pool.go
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2019-12-03 11:12:26 +0100
committerSimon Ser <contact@emersion.fr>2019-12-03 11:12:26 +0100
commit4cbe2fde9dad377dfedbf57b5e77df78e4e5b417 (patch)
treef01a9e0575fc328654776a97f18761056c1e93e7 /conn_pool.go
parent61f2f3e139dbc39618a9764a5b80af61933167da (diff)
downloadalps-4cbe2fde9dad377dfedbf57b5e77df78e4e5b417.tar.gz
alps-4cbe2fde9dad377dfedbf57b5e77df78e4e5b417.zip
go fmt
Diffstat (limited to 'conn_pool.go')
-rw-r--r--conn_pool.go2
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 {