gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

safe.go (157B)


      1 // +build appengine
      2 
      3 package pgdialect
      4 
      5 func bytesToString(b []byte) string {
      6 	return string(b)
      7 }
      8 
      9 func stringToBytes(s string) []byte {
     10 	return []byte(s)
     11 }