1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17: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

@@ -36,7 +36,10 @@ type JetEngine struct {
jetDataContextKey string
}
var _ Engine = (*JetEngine)(nil)
var (
_ Engine = (*JetEngine)(nil)
_ EngineFuncer = (*JetEngine)(nil)
)
// jet library does not export or give us any option to modify them via Set
// (unless we parse the files by ourselves but this is not a smart choice).