mirror of
				https://github.com/redis/go-redis.git
				synced 2025-10-30 16:45:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			141 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			141 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build appengine
 | |
| 
 | |
| package rediscmd
 | |
| 
 | |
| func String(b []byte) string {
 | |
| 	return string(b)
 | |
| }
 | |
| 
 | |
| func Bytes(s string) []byte {
 | |
| 	return []byte(s)
 | |
| }
 |