cloudspannerecosystem / spanner-dump

Command line tool for exporting a Cloud Spanner database in text format
Apache License 2.0
40 stars 13 forks source link

Use `go install` instead of `go get` #23

Closed kamina-zzz closed 1 year ago

kamina-zzz commented 1 year ago

Update README to use go install.

'go get' is no longer supported outside a module. To build and install a command, use 'go install' with a version, like 'go install example.com/cmd@latest' For more information, see https://golang.org/doc/go-get-install-deprecation or run 'go help get' or 'go help install'.

yfuruyama commented 1 year ago

Thanks! LGTM.