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

cloudbrain_redis_key.go 224 B

1234567
  1. package redis_key
  2. const CLOUDBRAIN_PREFIX = "cloudbrain"
  3. func CloudbrainBindingJobNameKey(repoId string, jobType string, jobName string) string {
  4. return KeyJoin(CLOUDBRAIN_PREFIX, repoId, jobType, jobName, "redis_key")
  5. }