new: Added the option to automatically pull in the configuration

This commit is contained in:
2024-12-18 09:19:27 +08:00
parent 3f1e302d6b
commit a793d7b731
3 changed files with 17 additions and 13 deletions

View File

@@ -1,10 +1,11 @@
package config
type mStorage struct {
SRC string `yaml:"src"`
DST string `yaml:"dst"`
Type string `yaml:"type"`
COS cosConfig `yaml:"cos"`
SRC string `yaml:"src"`
DST string `yaml:"dst"`
Type string `yaml:"type"`
COS cosConfig `yaml:"cos"`
AutoPull bool `yaml:"auto_pull"`
}
type cosConfig struct {