Files
EdgeCommon/pkg/serverconfigs/http_cache_storage_file.go
2020-10-04 20:38:03 +08:00

10 lines
170 B
Go

package serverconfigs
type HTTPFileCacheStorage struct {
Dir string `yaml:"dir" json:"dir"` // 目录
}
func (this *HTTPFileCacheStorage) Init() error {
return nil
}