Rename to lexer and split in files

This commit is contained in:
Thomas Pelletier
2021-02-02 08:28:30 -05:00
parent 7300b6a97b
commit 1e8b0dc3c9
7 changed files with 367 additions and 362 deletions
+11
View File
@@ -0,0 +1,11 @@
package toml
func Unmarshal(data []byte, v interface{}) error {
// TODO
return nil
}
func Marshal(v interface{}) ([]byte, error) {
// TODO
return nil, nil
}