Name returns the name of the engine.
()
| 26 | type ViewEngine interface { |
| 27 | // Name returns the name of the engine. |
| 28 | Name() string |
| 29 | // Load should load the templates from the given FileSystem. |
| 30 | Load() error |
| 31 | // ExecuteWriter should execute a template by its filename with an optional layout and bindingData. |
no outgoing calls