更新内容

This commit is contained in:
dragon
2024-12-25 17:29:31 +08:00
parent ba0aaa7387
commit 161b49a47b
10 changed files with 203 additions and 37 deletions

7
pkg/services/cache.go Normal file
View File

@@ -0,0 +1,7 @@
package services
type Cache interface {
Put(key string, value []byte) error
Get(key string) ([]byte, error)
Delete(key string) error
}