Files
tldr/pages.tr/common/go-mod.md
2022-10-31 07:06:43 -03:00

25 lines
479 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# go mod
> Modül yönetimi.
> Daha fazla bilgi için: <https://golang.org/cmd/go/#hdr-Module_maintenance>.
- Mevcut dizinde yeni modül başlat:
`go mod init {{modülİsmi}}`
- Modülleri yerel önbelleğe yükle:
`go mod download`
- Kaybolan modülleri ekle ve kullanılmayanları sil:
`go mod tidy`
- Bağlılıkların beklenen içeriğe sahip olduklarını doğrula:
`go mod verify`
- Tüm bağlılıkların kaynaklarını satıcı dizine kopyala:
`go mod vendor`