https://github.com/grafana/grafana
Raw File
Tip revision: 669250678b6b2aa2a6c3d355b65123e29e13ce66 authored by marco.schaefer on 03 May 2024, 13:37:14 UTC
add tabindex=0 if link is disabled to make it focusable.
Tip revision: 6692506
go.work
go 1.21.0

use (
	.
	./pkg/apimachinery
	./pkg/apiserver
	./pkg/build/wire
	./pkg/promlib
	./pkg/util/xorm
)

// when we release xorm we would like to release it like github.com/grafana/grafana/pkg/util/xorm
// but we don't want to change all the imports. so we use replace to handle this situation
replace xorm.io/xorm => ./pkg/util/xorm

// this is required until a new version of k8s.io/component-base is released
// with an update to prometheus/common v0.48.0
replace k8s.io/component-base => k8s.io/component-base v0.0.0-20240417101527-62c04b35eff6
back to top