mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			172 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			172 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !jsoniter
 | 
						|
 | 
						|
package restful
 | 
						|
 | 
						|
import "encoding/json"
 | 
						|
 | 
						|
var (
 | 
						|
	MarshalIndent = json.MarshalIndent
 | 
						|
	NewDecoder    = json.NewDecoder
 | 
						|
	NewEncoder    = json.NewEncoder
 | 
						|
)
 |