1、添加中英文版本

2、修复已知BUG
3、完善功能
4、添加minimax视频渠道
This commit is contained in:
Connor
2026-01-18 05:21:34 +08:00
parent bfba6342dc
commit d39759926e
52 changed files with 3456 additions and 2617 deletions

View File

@@ -17,7 +17,7 @@ type rateLimiter struct {
var limiter = &rateLimiter{
requests: make(map[string][]time.Time),
limit: 100,
limit: 2000, // 每分钟最多 2000 次请求
window: time.Minute,
}