Hey guys, I just got hands on a repo that uses this depependecy and I found something that I could not solve.
I made a simple project and pulled the dependecy, but when I try to run the example it just does not find the dep, and it is giving me an error could not import github.com/uber/h3-go/v4 (no required module provides package "github.com/uber/h3-go/v4"), which is weird because on the go.mod I can see the dependency imported. ```module h3-uber
go 1.21.6
require github.com/uber/h3-go/v4 v4.1.0```
I just copied the example provided on the readme but it does not work 😦
package main
import (
"fmt"
h3 "github.com/uber/h3-go/v4"
)
func main() {
latLng := h3.NewLatLng(37.775938728915946, -122.41795063018799)
resolution := 9 // between 0 (biggest cell) and 15 (smallest cell)
cell := h3.LatLngToCell(latLng, resolution)
fmt.Printf("%s", cell)
}
This error is the same one I am getting on my original repo.
Did I missed something?? Thanks in advance.