1
0
mirror of https://github.com/danog/liquid.git synced 2024-12-02 21:57:47 +01:00
liquid/expression/config.go
Oliver Steele c599761c6a simplify
2017-07-07 05:51:40 -04:00

12 lines
231 B
Go

package expression
// Config holds configuration information for expression interpretation.
type Config struct {
filters map[string]interface{}
}
// NewConfig creates a new Settings.
func NewConfig() Config {
return Config{}
}