issue12403.go 104 B

123456
  1. package issue12403
  2. type Parsable interface {
  3. FromJSON(jstr string) string
  4. ToJSON() (string, error)
  5. }