ai-gateway/common/config/key.go
2024-04-21 17:59:57 +08:00

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"
)