Alison Bento

Results 5 comments of Alison Bento

These are Go related errors. `strconv` and `strings` are standard library packages and should be imported before being referenced. I would advise setting up your code editor for Go so...

`whatsapp` refers to this library, `go-whatsapp`. You should import it by adding `github.com/Rhymen/go-whatsapp` to your imports. This reference should also be automatically resolved by your editor tools when properly configured...

Hmmmm, after some testing I noticed some interesting points: - The `go.mod` file in `receiveMessages` resolves the `whatsapp` dependency locally (and relatively to the example work directory). It means that...

The `Login` method for the type `*whatsapp.Conn` writes the QR Code data into a string channel. You can use this channel to generate a QR Code Image and save it...