mirror of
https://github.com/danog/liquid.git
synced 2024-11-27 08:34:42 +01:00
12 lines
230 B
Go
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{}
|
|
}
|