mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-17 17:16:38 +08:00
14 lines
315 B
Go
14 lines
315 B
Go
package config
|
|
|
|
const (
|
|
KeyPrefix = "cfg_"
|
|
|
|
KeyAPIVersion = KeyPrefix + "api_version"
|
|
KeyLibraryID = KeyPrefix + "library_id"
|
|
KeyPlugin = KeyPrefix + "plugin"
|
|
KeySK = KeyPrefix + "sk"
|
|
KeyAK = KeyPrefix + "ak"
|
|
KeyRegion = KeyPrefix + "region"
|
|
KeyUserID = KeyPrefix + "user_id"
|
|
)
|