10 lines
170 B
Go
10 lines
170 B
Go
package config
|
|
|
|
const (
|
|
KeyPrefix = "cfg_"
|
|
|
|
KeyAPIVersion = KeyPrefix + "api_version"
|
|
KeyLibraryID = KeyPrefix + "library_id"
|
|
KeyPlugin = KeyPrefix + "plugin"
|
|
)
|