package config type FTP struct { Enable bool `mapstructure:"enable" json:"enable" yaml:"enable"` Address string `mapstructure:"address" json:"address" yaml:"address"` Port string `mapstructure:"port" json:"port" yaml:"port"` Name string `mapstructure:"name" json:"name" yaml:"name"` PWD string `mapstructure:"pwd" json:"pwd" yaml:"pwd"` TimeAt string `mapstructure:"time-at" json:"time-at" yaml:"time-at"` Folder string `mapstructure:"folder" json:"folder" yaml:"folder"` FolderBakup string `mapstructure:"folder-bakup" json:"folder-bakup" yaml:"folder-bakup"` }