mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-10-30 23:53:48 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			193 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			193 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package bake
 | |
| 
 | |
| import "github.com/hashicorp/hcl"
 | |
| 
 | |
| func ParseHCL(dt []byte) (*Config, error) {
 | |
| 	var c Config
 | |
| 	if err := hcl.Unmarshal(dt, &c); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return &c, nil
 | |
| }
 | 
