一、创立一个 Go Modules 我的项目
1、创立文件夹
mkdir tool && cd tool
2、初始化包 go mod init github.com/hisheng/tool
➜ go mod init github.com/hisheng/toolgo: creating new go.mod: module github.com/hisheng/tool
阐明:咱们把代码包发到 github上。
3、增加业务代码
新建tool.go文件
➜ touch tool.go
写入代码
package toolfunc Hello() string { return "hello from tool project"}
二、公布到github近程代码仓库
git initgit add .git commit -m "init"git remote add origin https://github.com/hisheng/tool.gitgit push -u origin master