mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-15 00:31:30 -05:00
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.17.1 to 2.17.2. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.17.1...v2.17.2) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
13 lines
180 B
Go
13 lines
180 B
Go
//go:build purego
|
|
// +build purego
|
|
|
|
package ws
|
|
|
|
func strToBytes(str string) (bts []byte) {
|
|
return []byte(str)
|
|
}
|
|
|
|
func btsToString(bts []byte) (str string) {
|
|
return string(bts)
|
|
}
|