#I'm trying to use the "github.com/scylladb/gocql" module.

5 messages · Page 1 of 1 (latest)

quasi ore
#

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() {
}

GitHub

Package gocql implements a fast and robust ScyllaDB client for the Go programming language. - scylladb/gocql

full hull
quasi ore