发布自己的golang库

最近在用golang写一个生成声波的小玩具,因此想生成一个公开的库,记录自己的实现过程

git clone https://github.com/gl1n/gowave.git
go mod init github.com/gl1n/gowave
git add *
git commit -m "第一次提交"
git push
go get github.com/gl1n/gowave

本文参考了另一篇博客