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

12 lines
231 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-07 11:51:31 +02:00
filters map[string]interface{}
2017-07-04 17:08:57 +02:00
}
// NewConfig creates a new Settings.
func NewConfig() Config {
2017-07-07 11:51:31 +02:00
return Config{}
2017-07-04 17:08:57 +02:00
}