constants.go 325 B

12345678910111213
  1. package objx
  2. const (
  3. // PathSeparator is the character used to separate the elements
  4. // of the keypath.
  5. //
  6. // For example, `location.address.city`
  7. PathSeparator string = "."
  8. // SignatureSeparator is the character that is used to
  9. // separate the Base64 string from the security signature.
  10. SignatureSeparator = "_"
  11. )