mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-02-03 21:10:51 +08:00
- Renamed constants from uppercase to CamelCase for consistency. - Replaced redundant file-based auth handling logic with the new `util.CountAuthFiles` helper. - Fixed various error-handling inconsistencies and enhanced robustness in file operations. - Streamlined auth client reload logic in server and watcher components. - Applied minor code readability improvements across multiple packages.
12 lines
233 B
Go
12 lines
233 B
Go
package constant
|
|
|
|
const (
|
|
Gemini = "gemini"
|
|
GeminiCLI = "gemini-cli"
|
|
GeminiWeb = "gemini-web"
|
|
Codex = "codex"
|
|
Claude = "claude"
|
|
OpenAI = "openai"
|
|
OpenaiResponse = "openai-response"
|
|
)
|