mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 12:20:27 +08:00
10 lines
170 B
Go
10 lines
170 B
Go
package serverconfigs
|
|
|
|
type HTTPFileCacheStorage struct {
|
|
Dir string `yaml:"dir" json:"dir"` // 目录
|
|
}
|
|
|
|
func (this *HTTPFileCacheStorage) Init() error {
|
|
return nil
|
|
}
|