mirror of
https://github.com/danog/liquid.git
synced 2024-12-02 21:37:47 +01:00
12 lines
238 B
Go
12 lines
238 B
Go
package expression
|
|
|
|
// Config holds configuration information for expression interpretation.
|
|
type Config struct {
|
|
filterDictionary
|
|
}
|
|
|
|
// NewConfig creates a new Settings.
|
|
func NewConfig() Config {
|
|
return Config{newFilterDictionary()}
|
|
}
|