1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-22 20:37:05 +00:00

various improvements and new 'UseOnce' method - read HISTORY.md

This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-08-06 03:35:58 +03:00
parent 5d480dc801
commit 46a3a99adf
20 changed files with 147 additions and 221 deletions

View File

@@ -106,7 +106,10 @@ type DjangoEngine struct {
templateCache map[string]*pongo2.Template
}
var _ Engine = (*DjangoEngine)(nil)
var (
_ Engine = (*DjangoEngine)(nil)
_ EngineFuncer = (*DjangoEngine)(nil)
)
// Django creates and returns a new django view engine.
// The given "extension" MUST begin with a dot.