github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+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  }