2024-06-06 02:29:27 +08:00
|
|
|
go 1.22.4
|
2024-02-23 21:54:24 +08:00
|
|
|
|
|
|
|
use (
|
|
|
|
.
|
2024-02-24 04:15:43 +08:00
|
|
|
./pkg/apimachinery
|
|
|
|
./pkg/apiserver
|
2024-06-15 00:35:30 +08:00
|
|
|
./pkg/build
|
2024-03-25 18:23:27 +08:00
|
|
|
./pkg/build/wire
|
2024-03-12 00:22:33 +08:00
|
|
|
./pkg/promlib
|
2024-06-20 21:11:21 +08:00
|
|
|
./pkg/storage/unified/resource
|
2024-02-23 21:54:24 +08:00
|
|
|
./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
|
2024-04-25 17:47:01 +08:00
|
|
|
|
|
|
|
// 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
|