shad-go/jsonlist/jsonlist.go
2022-02-10 22:06:57 +00:00

14 lines
232 B
Go

//go:build !solution
// +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")
}