(opts Options)
| 265 | } |
| 266 | |
| 267 | func DefaultBindings(opts Options) []string { |
| 268 | baseOpts := opts.GetBaseOpts() |
| 269 | return []string{baseOpts.DataFolder + ":/data", baseOpts.ConfigFolder + ":/config", baseOpts.MediaFolder + ":/media"} |
| 270 | } |
| 271 | |
| 272 | // TODO: Can we extract the baseOpts from the object interface? |
| 273 | func (s *Base) WriteTemplate(templateName string, outputFile string, object Options) error { |
nothing calls this directly
no test coverage detected