1
0
mirror of https://github.com/danog/liquid.git synced 2024-12-11 20:29:38 +01:00
liquid/expression/config.go

12 lines
238 B
Go
Raw Normal View History

2017-07-04 17:12:40 +02:00
package expression
2017-07-04 17:08:57 +02:00
// Config holds configuration information for expression interpretation.
type Config struct {
2017-07-05 17:17:31 +02:00
filterDictionary
2017-07-04 17:08:57 +02:00
}
// NewConfig creates a new Settings.
func NewConfig() Config {
return Config{newFilterDictionary()}
}