simplifying the repo, commands removed and proper libraries kept

This commit is contained in:
Colin Henry
2020-07-08 18:59:37 -07:00
parent cb0bc37e6b
commit 3bdd3e503e
86 changed files with 1090 additions and 2345 deletions

6
encoding/coder.go Normal file
View File

@@ -0,0 +1,6 @@
package encoding
import "io"
type Encoder func(io.Writer, interface{}) error
type Decoder func(io.Reader, interface{}) error