coai/cli/help.go
2023-11-22 12:29:08 +08:00

15 lines
169 B
Go

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