mirror of
https://github.com/coaidev/coai.git
synced 2025-05-19 13:00:14 +09:00
14 lines
150 B
Go
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))
|
|
}
|