github.com/pachyderm/pachyderm@v1.13.4/src/server/cmd/worker/assets/assets.go (about)

     1  package assets
     2  
     3  import "github.com/pachyderm/pachyderm/src/client/pkg/errors"
     4  
     5  // This is an empty placeholder file. At build time, go-bindata will package
     6  // cert data from /etc/ssl/certs here.
     7  
     8  // RestoreAssets restores an asset under the given directory recursively
     9  func RestoreAssets(dir, name string) error {
    10  	// don't panic here because the linter is too damn smart, and figures out
    11  	// that downstream functions are unused when a panic occurs here
    12  	return errors.New("RestoreAssets is not implemented because it is only populated at build-time")
    13  }