实现服务的缓存策略设置

This commit is contained in:
刘祥超
2020-10-04 20:38:03 +08:00
parent 75f653972d
commit ade44ce6c9
10 changed files with 121 additions and 115 deletions

View File

@@ -0,0 +1,9 @@
package serverconfigs
type HTTPFileCacheStorage struct {
Dir string `yaml:"dir" json:"dir"` // 目录
}
func (this *HTTPFileCacheStorage) Init() error {
return nil
}