Files
kim.dev.6789 e50142a3b9 复制项目
2026-01-14 22:16:44 +08:00

9 lines
210 B
Go

package cache
import "context"
type ClientConfigCache interface {
DeleteUserCache(ctx context.Context, userIDs []string) error
GetUserConfig(ctx context.Context, userID string) (map[string]string, error)
}