FSLoader supports the fs.FS interface for loading templates
| 15 | |
| 16 | // FSLoader supports the fs.FS interface for loading templates |
| 17 | type FSLoader struct { |
| 18 | fs fs.FS |
| 19 | } |
| 20 | |
| 21 | func NewFSLoader(fs fs.FS) *FSLoader { |
| 22 | return &FSLoader{ |
nothing calls this directly
no outgoing calls
no test coverage detected