Add ascii encoding
This commit is contained in:
8
encoding/coder.go
Normal file
8
encoding/coder.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package encoding
|
||||
|
||||
import "bytes"
|
||||
|
||||
type Coder interface {
|
||||
Encode(s string, buf *bytes.Buffer)
|
||||
Decode(buf *bytes.Buffer) string
|
||||
}
|
Reference in New Issue
Block a user