mirror of
				https://github.com/yv1ing/MollyBlog.git
				synced 2025-09-16 14:53:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			453 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			453 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package config
 | |
| 
 | |
| type mStorage struct {
 | |
| 	SRC      string    `yaml:"src"`
 | |
| 	DST      string    `yaml:"dst"`
 | |
| 	Type     string    `yaml:"type"`
 | |
| 	COS      cosConfig `yaml:"cos"`
 | |
| 	AutoPull bool      `yaml:"auto_pull"`
 | |
| }
 | |
| 
 | |
| type cosConfig struct {
 | |
| 	Appid     string `yaml:"appid"`
 | |
| 	Bucket    string `yaml:"bucket"`
 | |
| 	Region    string `yaml:"region"`
 | |
| 	SecretId  string `yaml:"secret_id"`
 | |
| 	SecretKey string `yaml:"secret_key"`
 | |
| 	SavePath  string `yaml:"save_path"`
 | |
| }
 |