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