Files
CLIProxyAPI/sdk/translator/format.go
2025-09-22 01:40:24 +08:00

15 lines
336 B
Go

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)
}