--- 通用 CRUD 方法 --- Get 获取单个资源
(ctx context.Context, collection, key string, dest any)
| 55 | |
| 56 | // Get 获取单个资源 |
| 57 | Get(ctx context.Context, collection, key string, dest any) error |
| 58 | |
| 59 | // Set 设置资源 |
| 60 | Set(ctx context.Context, collection, key string, value any) error |
no outgoing calls