1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-27 04:35:14 +01:00
liquid/expressions/config.go
2017-07-13 20:18:23 -04:00

12 lines
230 B
Go

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