1
0
mirror of https://github.com/danog/liquid.git synced 2024-12-02 21:37:47 +01:00
liquid/expression/config.go
2017-07-05 11:17:31 -04:00

12 lines
238 B
Go

package expression
// Config holds configuration information for expression interpretation.
type Config struct {
filterDictionary
}
// NewConfig creates a new Settings.
func NewConfig() Config {
return Config{newFilterDictionary()}
}