gitlab.com/evatix-go/core@v1.3.55/chmodhelper/chmodins/ParseRwxInstructionUsingJsonResultMust.go (about)

     1  package chmodins
     2  
     3  import (
     4  	"gitlab.com/evatix-go/core/coredata/corejson"
     5  )
     6  
     7  func ParseRwxInstructionUsingJsonResultMust(
     8  	result *corejson.Result,
     9  ) *RwxInstruction {
    10  	rwxInstruction, err := ParseRwxInstructionUsingJsonResult(
    11  		result)
    12  
    13  	if err != nil {
    14  		panic(err)
    15  	}
    16  
    17  	return rwxInstruction
    18  }