github.com/willmadison/cli@v6.40.1-0.20181018160101-29d5937903ff+incompatible/actor/pushaction/random_word_generator.go (about)

     1  package pushaction
     2  
     3  //go:generate counterfeiter . RandomWordGenerator
     4  
     5  // RandomWordGenerator returns random words.
     6  type RandomWordGenerator interface {
     7  	RandomAdjective() string
     8  	RandomNoun() string
     9  }