github.com/replicatedhq/ship@v0.55.0/pkg/fs/fs.go (about)

     1  package fs
     2  
     3  import (
     4  	"github.com/spf13/afero"
     5  )
     6  
     7  // NewBaseFilesystem creates a new Afero OS filesystem
     8  func NewBaseFilesystem() afero.Afero {
     9  	return afero.Afero{Fs: afero.NewOsFs()}
    10  }