blob: 21307110bd544ee19414db435e47e32748e50e95 [file] [log] [blame]
Naveen Sampath04696f72022-06-13 15:19:14 +05301//go:build appengine
2// +build appengine
3
4package util
5
6func BytesToString(b []byte) string {
7 return string(b)
8}
9
10func StringToBytes(s string) []byte {
11 return []byte(s)
12}