ShinAPI / sdk /translator /format.go
sshinmen's picture
Initial commit
f94dd26
Raw
History Blame Contribute Delete
336 Bytes
package translator
// Format identifies a request/response schema used inside the proxy.
type Format string
// FromString converts an arbitrary identifier to a translator format.
func FromString(v string) Format {
return Format(v)
}
// String returns the raw schema identifier.
func (f Format) String() string {
return string(f)
}