github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+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  }