github.com/tiagovtristao/plz@v13.4.0+incompatible/src/help/stub.go (about) 1 // +build bootstrap 2 3 // Package help prints help messages about parts of plz. 4 package help 5 6 // Help is a stub implementation used only during bootstrap, when 7 // the main help package isn't available. 8 func Help(topic string) bool { 9 return false 10 } 11 12 // Topics is also a stub implementation used only during bootstrap. 13 func Topics(prefix string) {} 14 15 // A Topic is an alias for a string, which does not provide completion during bootstrap. 16 type Topic string