2024-06-05 13:29:27 -05:00
|
|
|
go 1.22.4
|
2024-02-23 07:54:24 -06:00
|
|
|
|
|
|
|
use (
|
|
|
|
.
|
2024-02-23 14:15:43 -06:00
|
|
|
./pkg/apimachinery
|
|
|
|
./pkg/apiserver
|
2024-06-14 11:35:30 -05:00
|
|
|
./pkg/build
|
2024-03-25 05:23:27 -05:00
|
|
|
./pkg/build/wire
|
2024-03-11 11:22:33 -05:00
|
|
|
./pkg/promlib
|
2024-02-23 07:54:24 -06: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 04:47:01 -05: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
|