udemy-go-web-1/pkg/config/config.go

10 lines
173 B
Go

package config
import "html/template"
// AppConfig holds the application config
type AppConfig struct {
TemplateCahce map[string]*template.Template
UseCache bool
}