mirror of
https://github.com/coaidev/coai.git
synced 2025-05-19 04:50:14 +09:00
16 lines
188 B
Go
16 lines
188 B
Go
package cli
|
|
|
|
import "fmt"
|
|
|
|
var Prompt = `
|
|
Commands:
|
|
- help
|
|
- invite <type> <num> <quota>
|
|
- token <user-id>
|
|
- root <password>
|
|
`
|
|
|
|
func Help() {
|
|
fmt.Println(fmt.Sprintf("%s", Prompt))
|
|
}
|