Change consts config field to env

This commit is contained in:
M. Mert Yildiran
2023-03-03 17:32:19 +03:00
parent 72a18871b1
commit 9a95fa364c
3 changed files with 9 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ import (
)
type ScriptingConfig struct {
Consts map[string]interface{} `yaml:"consts"`
Env map[string]interface{} `yaml:"env"`
Source string `yaml:"source" default:""`
}