1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 19:05:59 +02:00

go: add go modules (#3935)

* Add GO modules init command

Add command for initialising a new GO module. More about go modules: https://blog.golang.org/using-go-modules

Co-authored-by: Lucas Gabriel Schneider <casdpa@gmail.com>
This commit is contained in:
Augustin Grigorov 2020-03-27 12:47:07 +00:00 committed by GitHub
parent a1622ec1be
commit 72114be857
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,3 +26,7 @@
- Compile and install the current package:
`go install`
- Initialize a new module in the current directory:
`go mod init {{module_name}}`