formats.go

 1package jsons
 2
 3// Format is the supported format of mergers
 4type Format string
 5
 6// built-in formats
 7const (
 8	FormatAuto Format = "auto"
 9	FormatJSON Format = "json"
10)