コード例 #1
0
ファイル: gobot.go プロジェクト: vishaltelangre/gobot
func interactiveQueryHandler() {
	for {
		// displays the bot's specified name on the left of stdio screen
		botName := fmt.Sprintf("\x1b[01;33m%s > \x1b[0m", *id)
		inpLine := readline.ReadLine(&botName)

		if inpLine == nil {
			fmt.Println("There seems some issue.")
			continue
		}

		if input = strings.TrimSpace(*inpLine); input != "" {
			readline.AddHistory(input)
		}

		extensions.EvalQuery(input)
	}
}
コード例 #2
0
ファイル: gobot.go プロジェクト: vishaltelangre/gobot
func cliQueryHandler(input string) { extensions.EvalQuery(input) }