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