tldr/pages.tr/common/go-mod.md

25 lines
479 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 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`