mlabouardy / dialogflow-go-client

Go library for DialogFlow (API.AI) 😎

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

func NewV4() (UUID, error) return 2 values

plasticlife-art opened this issue · comments

So in this line:

client.sessionID = uuid.NewV4().String()

should be
u,_ := uuid.NewV4()
client.sessionID = u.String()