(paths []string)
| 72 | } |
| 73 | |
| 74 | func NewTemplateLoader(paths []string) *TemplateLoader { |
| 75 | loader := &TemplateLoader{ |
| 76 | paths: paths, |
| 77 | } |
| 78 | return loader |
| 79 | } |
| 80 | |
| 81 | // WatchDir returns true of directory doesn't start with . (dot) |
| 82 | // otherwise false. |
no outgoing calls