github.com/rancher/moq@v0.0.0-20200712062324-13d1f37d2d77/pkg/moq/testpackages/shadow/example.go (about)

     1  package shadow
     2  
     3  import (
     4  	"io"
     5  )
     6  
     7  // Shadower is an interface, with a method, with a parameter whose name shadows
     8  // an import name
     9  type Shadower interface {
    10  	Shadow(io io.Reader)
    11  }