golang-im聊天
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cfg_key.go 525 B

2 jaren geleden
1234567891011121314151617
  1. package md
  2. // 获取用户的缓存key
  3. const (
  4. KEY_SYS_CFG_CACHE = "gim_sys_cfg_cache"
  5. // 文件缓存的key
  6. KEY_CFG_FILE_PVD = "file_provider" // 文件供应商
  7. KEY_CFG_FILE_BUCKET = "file_bucket"
  8. KEY_CFG_FILE_REGION = "file_bucket_region"
  9. KEY_CFG_FILE_HOST = "file_bucket_host"
  10. KEY_CFG_FILE_SCHEME = "file_bucket_scheme"
  11. KEY_CFG_FILE_AK = "file_access_key"
  12. KEY_CFG_FILE_SK = "file_secret_key"
  13. KEY_CFG_FILE_MAX_SIZE = "file_user_upload_max_size"
  14. KEY_CFG_FILE_EXT = "file_ext"
  15. )