Revision 3b2c80b8ff3b48e2e051a1be8ef99f10bc79388c authored by Kyle Cunningham on 26 June 2024, 16:12:44 UTC, committed by grafana-delivery-bot[bot] on 24 July 2024, 13:18:17 UTC
* Fix image hover

* Prettier

* Fix height offset

(cherry picked from commit c575c06d63135939fe9dd7ecfd674971df054405)
1 parent 7f588ad
Raw File
go.work
go 1.22.4

use (
	.
	./pkg/apimachinery
	./pkg/apiserver
	./pkg/build
	./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
back to top