(c *gin.Context)
| 36 | } |
| 37 | |
| 38 | func ResetCodexChannelUsage(c *gin.Context) { |
| 39 | fetchCodexChannelWhamData( |
| 40 | c, |
| 41 | service.ConsumeCodexWhamRateLimitResetCredit, |
| 42 | "failed to reset codex usage", |
| 43 | "重置用量失败,请稍后重试", |
| 44 | ) |
| 45 | } |
| 46 | |
| 47 | type codexWhamFetchFunc func( |
| 48 | ctx context.Context, |
nothing calls this directly
no test coverage detected