OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / stretchr / testify / vendor / github.com / stretchr / objx / constants.go
1 package objx
2
3 const (
4         // PathSeparator is the character used to separate the elements
5         // of the keypath.
6         //
7         // For example, `location.address.city`
8         PathSeparator string = "."
9
10         // SignatureSeparator is the character that is used to
11         // separate the Base64 string from the security signature.
12         SignatureSeparator = "_"
13 )