github.com/wawandco/oxpecker@v1.5.7-0.20210910201653-5958d4afdd89/plugins/helptexter.go (about) 1 package plugins 2 3 // HelpTexter interface allows plugins to provide text to the 4 // help command or subcommand. 5 type HelpTexter interface { 6 // Help returns a string describing what the command/subcommand does. 7 HelpText() string 8 }