(input any, main string, efs embed.FS)
| 57 | } |
| 58 | |
| 59 | func RenderFromTemplatesWithMain(input any, main string, efs embed.FS) ([]byte, error) { |
| 60 | return RenderFromTemplatesWithGlob(input, main, []string{defaultGlob}, efs) |
| 61 | } |
| 62 | |
| 63 | func RenderFromTemplatesWithGlob(input any, main string, glob []string, efs embed.FS) ([]byte, error) { |
| 64 | t, err := SetupTemplateWithGlob(glob, efs) |
no test coverage detected