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