InfluxCommunity / influxdb3-go

The go package that provides a simple and convenient way to interact with InfluxDB 3.
https://pkg.go.dev/github.com/InfluxCommunity/influxdb3-go
MIT License
21 stars 11 forks source link

Module import failure #15

Closed lmangani closed 1 year ago

lmangani commented 1 year ago

Specifications

Following the readme instructions, importing the module fails

Code sample to reproduce problem

go get github.com/influxcommunity/influxdb3-go
import (
  "context"
  "encoding/json"
  "fmt"
  "os"

  "github.com/InfluxCommunity/influxdb3-go/influx"
)

// actual code
go mod tidy

Expected behavior

"github.com/InfluxCommunity/influxdb3-go/influx" should get installed according to the readme instructions

Actual behavior

go: finding module for package github.com/InfluxCommunity/influxdb3-go/influx go: found github.com/InfluxCommunity/influxdb3-go/influx in github.com/InfluxCommunity/influxdb3-go v0.0.0-20230607144859-c57855ac97f4 go: github.com/metrico/node-flight imports github.com/InfluxCommunity/influxdb3-go/influx: github.com/InfluxCommunity/influxdb3-go@v0.0.0-20230607144859-c57855ac97f4: parsing go.mod: module declares its path as: github.com/influxcommunity/influxdb3-go but was required as: github.com/InfluxCommunity/influxdb3-go

Additional info

No response