...

Source file src/github.com/redhat-developer/odo/pkg/testingutil/filesystem/singleton.go

Documentation: github.com/redhat-developer/odo/pkg/testingutil/filesystem

     1  package filesystem
     2  
     3  var singleFs Filesystem
     4  
     5  func Get() Filesystem {
     6  	if singleFs == nil {
     7  		singleFs = &DefaultFs{}
     8  	}
     9  	return singleFs
    10  }
    11  

View as plain text