shad-go/jsonlist/jsonlist.go
2022-03-15 23:49:56 +03:00

13 lines
212 B
Go

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