1
0
mirror of https://github.com/fumiama/go-base16384.git synced 2026-06-05 08:40:37 +08:00
Files
go-base16384/base14stub.go
2021-10-28 14:02:36 +08:00

20 lines
321 B
Go

// +build !386,!arm,!mipsle,!amd64,!arm64,!ppc64le,!mips64le
package base14
func EncodeString(s string) []byte {
return []byte{"stub!"}
}
func DecodeString(s string) []byte {
return []byte{"stub!"}
}
func Encode(b []byte) []byte {
return []byte{"stub!"}
}
func Decode(b []byte) []byte {
return []byte{"stub!"}
}