1
0
mirror of https://github.com/fumiama/unibase2n.git synced 2026-06-11 12:20:23 +08:00

适配字节序问题

This commit is contained in:
源文雨
2022-09-30 21:51:02 +08:00
parent 35341dcad5
commit 74b92c0711
6 changed files with 129 additions and 10 deletions

9
code.go Normal file
View File

@@ -0,0 +1,9 @@
package unibase2n
func (bs *Base) Encode(data []byte) []byte {
return nil
}
func (bs *Base) Decode(data []byte) []byte {
return nil
}