mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			334 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			334 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package serverconfigs
 | 
						|
 | 
						|
// AccessLogCommandStorageConfig 通过命令行存储
 | 
						|
type AccessLogCommandStorageConfig struct {
 | 
						|
	Command string   `yaml:"command" json:"command"`
 | 
						|
	Args    []string `yaml:"args" json:"args"`
 | 
						|
	Dir     string   `yaml:"dir" json:"dir"`
 | 
						|
}
 |