I'm trying to use & import this module but when i try to import the module it says "no required module provides package "github.com/scylladb/gocql")".
My go.mod:
module codeberg.org/me/myrepo
go 1.22.3
require (
...
)
replace github.com/gocql/gocql => github.com/scylladb/gocql v1.14.0
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
...
)
and the file i am trying to import the module:
package db
import (
"github.com/scylladb/gocql"
)
func init() {
}