gitlab.com/jfprevost/gitlab-runner-notlscheck@v11.11.4+incompatible/executors/docker/internal/volumes/parser/parser.go (about)

     1  package parser
     2  
     3  import "gitlab.com/gitlab-org/gitlab-runner/helpers/path"
     4  
     5  type Parser interface {
     6  	ParseVolume(spec string) (*Volume, error)
     7  	Path() path.Path
     8  }