kubewatch icon indicating copy to clipboard operation
kubewatch copied to clipboard

Consider fixing the go.mod directive

Open Dentrax opened this issue 1 year ago • 1 comments

https://github.com/robusta-dev/kubewatch/blob/4730af84d096fabf3d0c5a2aae15d666baac141b/go.mod#L1

- github.com/bitnami-labs/kubewatch
+ github.com/robusta-dev/kubewatch

Dentrax avatar May 02 '24 13:05 Dentrax

@Dentrax You can use the replace directive in go.mod if you're planning to use it in your project:

require(
        ...
	github.com/bitnami-labs/kubewatch v0.1.0
)

replace github.com/bitnami-labs/kubewatch v0.1.0 => github.com/robusta-dev/kubewatch v0.1.1-0.20240430073820-4730af84d096

cyakimov avatar May 09 '24 18:05 cyakimov