feat(升级依赖): 升级golang.org/x/text到v0.41.0

This commit is contained in:
2026-08-20 22:31:03 +08:00
parent be3d2225df
commit d3a364369d
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ type cacheEntry struct {
}
// Cache 简单的LRU缓存实现
// 字段: capacity 容量, list 双向链表, items哈希表, lock 互斥锁
// 字段: capacity 容量, list 双向链表, items 哈希表, lock 互斥锁
type Cache struct {
capacity int
list *list.List