coai/cli/help.go
2023-10-25 12:53:16 +08:00

14 lines
150 B
Go

package cli
import "fmt"
var Prompt = `
Commands:
- help
- invite <type> <num> <quota>
`
func Help() {
fmt.Println(fmt.Sprintf("%s", Prompt))
}