5 Matching Annotations
- Dec 2022
-
-
For now, because you haven't published the module yet, you need to adapt the example.com/hello module so it can find the example.com/greetings code on your local file system.
Tags
Annotators
URL
-
- Nov 2022
-
learnku.com learnku.com
-
模块感知模式
模块感知模式
Tags
Annotators
URL
-
- Jul 2022
-
-
use the go mod edit command to edit the example.com/hello module to redirect Go tools from its module path (where the module isn't) to the local directory (where it is).
step #1:
go mod edit -replace */=/
step #2:
go mod tidy
-
go mod edit -replace example.com/greetings=../greetings
模块(module)路径修改 如何修改模块的路径,将线上的路径指向本地。
Tags
Annotators
URL
-
- Apr 2022