1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-27 07:44:39 +01:00
liquid/expressions/config.go

12 lines
230 B
Go
Raw Normal View History

2017-07-14 02:18:23 +02:00
package expressions
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
}
2017-07-14 02:18:23 +02:00
// NewConfig creates a new Config.
2017-07-04 17:08:57 +02:00
func NewConfig() Config {
2017-07-07 11:51:31 +02:00
return Config{}
2017-07-04 17:08:57 +02:00
}