From 38ff34ee1eb8a2ee0142e4204242c0ff6e8a085f Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Mon, 25 Dec 2017 21:00:14 +0200 Subject: [PATCH] fix trailing parenthesis on the mvc/ideas/1/main.go which will be removed at the next commits, this was my dream and I made it reality in just 50 hours :P Former-commit-id: 9c01ab4d684897815dccb02ab6515f568b22a1cc --- mvc/ideas/1/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvc/ideas/1/main.go b/mvc/ideas/1/main.go index bde6019b..95040ab2 100644 --- a/mvc/ideas/1/main.go +++ b/mvc/ideas/1/main.go @@ -36,7 +36,7 @@ func TodoApp(app *mvc.Application) { // can be either a function which accepts an iris.Context and returns a single value (dynamic binding) // or a static struct value (service). app.AddDependencies( - sessions.New(sessions.Config{})).Start, + sessions.New(sessions.Config{}).Start, &prefixedLogger{prefix: "DEV"}, )