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

     1  package chmodhelper
     2  
     3  func GetExistingChmodRwxWrapperMustPtr(
     4  	location string,
     5  ) *RwxWrapper {
     6  	wrapperPtr, err := GetExistingChmodRwxWrapperPtr(location)
     7  
     8  	if err != nil {
     9  		panic(err)
    10  	}
    11  
    12  	return wrapperPtr
    13  }