Code, file structure on left and error
package main
import (
"fmt"
"github.com/cilium/cilium/api/v1/models"
"github.com/cilium/cilium/pkg/client"
log "github.com/sirupsen/logrus"
)
func main() {
fmt.Println("Starting Application...")
fmt.Println("Terminating Application...")
}
This is the error I get when I run: go run main.go
github.com/cilium/cilium@1.7.2 requires github.com/optiopay/kafka@v0.0.0-2080809090225-01ce283b732b: ivalid version: unknown revision 01ce283b732b
I am using go mod file for my dependencies and my go version is latest 1.14
I also checked my file structure and I already have cilium@v1.7.2 under pkg/mod/github.com/cilium
I tried adding github.com/optiopay/kafka
under my import statement in my code but i get the same exact error still.
I have no idea how to fix this, I was googling but I could fin no definite or clear answer which worked. Any help appreicated.