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.

utils.go 231 B

12345678910111213
  1. package cdssdk
  2. import (
  3. "strings"
  4. )
  5. func JoinObjectPath(comps ...string) string {
  6. return strings.Join(comps, ObjectPathSeparator)
  7. }
  8. func SplitObjectPath(pat string) []string {
  9. return strings.Split(pat, ObjectPathSeparator)
  10. }