BlocksEngine is an Iris view engine adapter for the blocks view engine. The blocks engine is based on the html/template standard Go package. To initialize a fresh one use the `Blocks` function. To wrap an existing one use the `WrapBlocks` function. It contains the following four default template f
| 21 | // |
| 22 | // Read more at: https://github.com/kataras/blocks. |
| 23 | type BlocksEngine struct { |
| 24 | Engine *blocks.Blocks |
| 25 | } |
| 26 | |
| 27 | var ( |
| 28 | _ Engine = (*BlocksEngine)(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected