shad-go/jsonlist/jsonlist.go
2020-04-15 23:52:59 +03:00

13 lines
211 B
Go

// +build !solution
package jsonlist
import "io"
func Marshal(w io.Writer, slice interface{}) error {
panic("implement me")
}
func Unmarshal(r io.Reader, slice interface{}) error {
panic("implement me")
}