package jsons

// Format is the supported format of mergers
type Format string

// built-in formats
const (
	FormatAuto Format = "auto"
	FormatJSON Format = "json"
)
