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

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