Files
EdgeCommon/pkg/serverconfigs/http_cache_storage_file.go

10 lines
170 B
Go
Raw Normal View History

2020-10-04 20:38:03 +08:00
package serverconfigs
type HTTPFileCacheStorage struct {
Dir string `yaml:"dir" json:"dir"` // 目录
}
func (this *HTTPFileCacheStorage) Init() error {
return nil
}