shad-go/jsonlist/jsonlist.go

14 lines
212 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
2020-04-15 20:52:59 +00:00
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")
}