10 lines
173 B
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
|
||
|
}
|