Hi, i want to make a change to a library from github, but i don't know if this the correct way or not. The library i use is https://github.com/sijms/go-ora
after i clone from git, i make change the go.mod
// module github.com/sijms/go-ora/v2
module go-ora-local
go 1.17
require golang.org/dl v0.0.0-20230616140434-092be8a72776 // indirect
but then all the file will have error could not import from github.com/sijms/go-ora/v2
currently i manuall change the import package of each file. Is there any idioms way to do this ? thank you