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.
13 lines
325 B
13 lines
325 B
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 = "_" |
|
)
|
|
|