Files
go-toml/encoding.go
T
2021-02-02 08:28:30 -05:00

12 lines
163 B
Go

package toml
func Unmarshal(data []byte, v interface{}) error {
// TODO
return nil
}
func Marshal(v interface{}) ([]byte, error) {
// TODO
return nil, nil
}