coai/cli/help.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))
}