1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-22 19:36:00 +00:00

Remove unused Plugin's custom callbacks.

This commit is contained in:
Gerasimos Maropoulos
2016-09-05 03:56:28 +03:00
parent 27e21d2685
commit 482c108839
4 changed files with 15 additions and 34 deletions

View File

@@ -84,7 +84,7 @@ import (
const (
// Version of the iris
Version = "4.1.4"
Version = "4.1.5"
banner = ` _____ _
|_ _| (_)
@@ -211,7 +211,7 @@ func New(cfg ...config.Iris) *Framework {
// set the Logger
s.Logger = logger.New(logger.DefaultConfig())
// set the plugin container
s.Plugins = &pluginContainer{logger: s.Logger}
s.Plugins = newPluginContainer(s.Logger)
// set the templates
s.templates = newTemplateEngines(map[string]interface{}{
"url": s.URL,