(c *gin.Context)
| 27 | } |
| 28 | |
| 29 | func GetCodexChannelRateLimitResetCredits(c *gin.Context) { |
| 30 | fetchCodexChannelWhamData( |
| 31 | c, |
| 32 | service.FetchCodexWhamRateLimitResetCredits, |
| 33 | "failed to fetch codex reset credits", |
| 34 | "获取重置次数详情失败,请稍后重试", |
| 35 | ) |
| 36 | } |
| 37 | |
| 38 | func ResetCodexChannelUsage(c *gin.Context) { |
| 39 | fetchCodexChannelWhamData( |
nothing calls this directly
no test coverage detected