gitlab.com/evatix-go/core@v1.3.55/coreinterface/pathextendinf/Cloner.go (about)

     1  package pathextendinf
     2  
     3  type Cloner interface {
     4  	Copy() PathExtender
     5  	CloneNew(newFileName string) PathExtender
     6  	CloneRoot(rootPath string) PathExtender
     7  	CloneParentDir(rootPath string) PathExtender
     8  }