Fix js import problem in js client (#234)

This commit is contained in:
Janos Dobronszki
2021-10-15 11:31:45 +01:00
committed by GitHub
parent 70ffee4f4d
commit 82c6fe360d
7 changed files with 7 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ import (
func AskAquestion() {
answerService := answer.NewAnswerService(os.Getenv("MICRO_API_TOKEN"))
rsp, err := answerService.Question(&answer.QuestionRequest{
Query: "google",
Query: "microsoft",
})
fmt.Println(rsp, err)
}