7 lines
104 B
Go
7 lines
104 B
Go
|
package issue12403
|
||
|
|
||
|
type Parsable interface {
|
||
|
FromJSON(jstr string) string
|
||
|
ToJSON() (string, error)
|
||
|
}
|