mirror of
https://github.com/grafana/grafana.git
synced 2024-11-21 16:38:03 -06:00
13 lines
306 B
Plaintext
13 lines
306 B
Plaintext
go 1.21.0
|
|
|
|
use (
|
|
.
|
|
./pkg/apimachinery
|
|
./pkg/apiserver
|
|
./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
|