Files
budget-backend/vendor/github.com/cloudwego/base64x/base64x_subr_amd64.go
kratisto f81c902ca6
Some checks failed
golangci-lint / lint (push) Successful in 1m33s
Test / test (push) Failing after 2m16s
chore: migrate to gitea
2026-01-27 01:56:53 +01:00

19 lines
319 B
Go

package base64x
import (
"github.com/cloudwego/base64x/internal/native"
)
// HACK: maintain these only to prevent breakchange, because sonic-go linkname these
var (
_subr__b64decode uintptr
_subr__b64encode uintptr
)
func init() {
_subr__b64decode = native.S_b64decode
_subr__b64encode = native.S_b64encode
}