Personal fork of the mighty, self-hostable Git server for the command line 🍦
1package common 2 3type BubbleHelper interface { 4 Help() []HelpEntry 5} 6 7type HelpEntry struct { 8 Key string 9 Value string 10}