mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-29 00:20:26 +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
|
||
|
|
}
|