packagewclayerimport"os"// ProcessBaseLayer post-processes a base layer that has had its files extracted.// The files should have been extracted to <path>\Files.funcProcessBaseLayer(pathstring)error{err:=processBaseImage(path)iferr!=nil{return&os.PathError{Op:"ProcessBaseLayer",Path:path,Err:err}}returnnil}// ProcessUtilityVMImage post-processes a utility VM image that has had its files extracted.// The files should have been extracted to <path>\Files.funcProcessUtilityVMImage(pathstring)error{err:=processUtilityImage(path)iferr!=nil{return&os.PathError{Op:"ProcessUtilityVMImage",Path:path,Err:err}}returnnil}