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
This commit is contained in:
Gerasimos (Makis) Maropoulos 2017-12-25 21:00:14 +02:00
parent 2ab1456414
commit 38ff34ee1e

View File

@ -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"},
)