mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-06 02:38:13 +00:00
910ccdb092
Bumps [github.com/hashicorp/terraform-plugin-sdk/v2](https://github.com/hashicorp/terraform-plugin-sdk) from 2.26.1 to 2.27.0. - [Release notes](https://github.com/hashicorp/terraform-plugin-sdk/releases) - [Changelog](https://github.com/hashicorp/terraform-plugin-sdk/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/terraform-plugin-sdk/compare/v2.26.1...v2.27.0) --- updated-dependencies: - dependency-name: github.com/hashicorp/terraform-plugin-sdk/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
13 lines
251 B
Go
13 lines
251 B
Go
// +build appengine
|
|
|
|
package msgpack
|
|
|
|
// bytesToString converts byte slice to string.
|
|
func bytesToString(b []byte) string {
|
|
return string(b)
|
|
}
|
|
|
|
// stringToBytes converts string to byte slice.
|
|
func stringToBytes(s string) []byte {
|
|
return []byte(s)
|
|
}
|