* resize uploaded images #309 * fix temp files created in current dire after image test * update mod * missing image test files * fix failed goroutine test on image-resize submit * switch to mockery * missing in mock change * resize by both ResizeWidth and ResizeHeight * add IMAGE_RESIZE params to readme * add latest features to the description * lint: missing file close in image test
14 lines
325 B
Go
14 lines
325 B
Go
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 = "_"
|
|
)
|