Difference between revisions of "Go mod"

From wikieduonline
Jump to navigation Jump to search
Line 11: Line 11:
 
Execute:
 
Execute:
 
  [[go mod init]] YOUR_NAME
 
  [[go mod init]] YOUR_NAME
  go: creating new go.mod: module YOUR_NAME
+
  go: creating new [[go.mod]]: module YOUR_NAME
  
 
It will create a <code>[[go.mod]]</code> file containing
 
It will create a <code>[[go.mod]]</code> file containing

Revision as of 14:03, 25 July 2023

go mod init
go mod download
go mod vendor
go mod verify
go mod why
go mod tidy


Execute:

go mod init YOUR_NAME
go: creating new go.mod: module YOUR_NAME

It will create a go.mod file containing

 module YOUR_NAME

 go 1.14
go help mod


See also

Advertising: