doc: use go get -d for installation (#2165)

Installing executables with 'go get' in module
mode is deprecated.
This commit is contained in:
Aleksandr Razumov
2021-11-25 10:47:39 +03:00
committed by GitHub
parent b1e76d1a05
commit 990684c6c8
6 changed files with 7 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ go mod init todo
Run the following Go commands to install Ent, and tell it to initialize the project structure along with a `Todo` schema.
```console
go get entgo.io/ent/cmd/ent
go get -d entgo.io/ent/cmd/ent
```
```console