aboutsummaryrefslogtreecommitdiff
path: root/server.go
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2020-01-28 20:04:18 +0100
committerSimon Ser <contact@emersion.fr>2020-01-28 20:04:18 +0100
commitbdf1a8b02b1b0188818305755c9d53cf0e8b5c70 (patch)
treeea686b489bf567045676ccf41805040942784f08 /server.go
parentc0b4998b383daf6f0990717f61bdcf557841b03e (diff)
downloadalps-bdf1a8b02b1b0188818305755c9d53cf0e8b5c70.tar.gz
alps-bdf1a8b02b1b0188818305755c9d53cf0e8b5c70.zip
koushin: add Store interface
References: https://todo.sr.ht/~sircmpwn/koushin/5
Diffstat (limited to 'server.go')
-rw-r--r--server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.go b/server.go
index a8c2123..bccbed8 100644
--- a/server.go
+++ b/server.go
@@ -59,7 +59,7 @@ func newServer(e *echo.Echo, options *Options) (*Server, error) {
return nil, err
}
- s.Sessions = newSessionManager(s.dialIMAP, s.dialSMTP)
+ s.Sessions = newSessionManager(s.dialIMAP, s.dialSMTP, e.Logger)
return s, nil
}