proto modify

This commit is contained in:
wangchuxiao
2023-03-03 17:42:26 +08:00
parent 7050b64b19
commit 96d9b25b57
76 changed files with 1038 additions and 1230 deletions
+2 -2
View File
@@ -14,10 +14,10 @@ type ThirdDatabase interface {
}
type thirdDatabase struct {
cache cache.Cache
cache cache.Model
}
func NewThirdDatabase(cache cache.Cache) ThirdDatabase {
func NewThirdDatabase(cache cache.Model) ThirdDatabase {
return &thirdDatabase{cache: cache}
}