(userId int, delta int64)
| 133 | } |
| 134 | |
| 135 | func cacheDecrUserQuota(userId int, delta int64) error { |
| 136 | return cacheIncrUserQuota(userId, -delta) |
| 137 | } |
| 138 | |
| 139 | // Helper functions to get individual fields if needed |
| 140 | func getUserGroupCache(userId int) (string, error) { |
no test coverage detected