mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-01 19:00:35 +08:00
12 lines
199 B
Go
12 lines
199 B
Go
|
|
package serverconfigs
|
||
|
|
|
||
|
|
type CachePolicyType = string
|
||
|
|
|
||
|
|
type HTTPFileCacheConfig struct {
|
||
|
|
Dir string `yaml:"dir" json:"dir"` // 目录
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *HTTPFileCacheConfig) Init() error {
|
||
|
|
return nil
|
||
|
|
}
|