使用 satori/go.uuid 卻收到 expects two arguments
前言:你接手了一個舊專案,你嘗試將這個專案 build and run,然後發生了 expects two arguments,WTF?
專案中有用到 satori/go.uuid,但只有你 build failed,警告訊息是 expects two arguments
1 | func dosomething(url string) (output string, err error) { |
沒事,換一下 branch 就好
1 | go mod edit -replace=github.com/satori/go.uuid@v1.2.0=github.com/satori/go.uuid@master |
最後你的 go.mod 應該會長這樣
1 | module yourmomsofat |
Refer: