this post was submitted on 02 Jul 2023
5 points (100.0% liked)

Golang

2201 readers
17 users here now

This is a community dedicated to the go programming language.

Useful Links:

Rules:

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] foehammer@programming.dev 1 points 1 year ago (1 children)

Some aspects of that repo are actually language features, such as the pkg and internal directories.

[–] CodeBlooded@programming.dev 1 points 1 year ago (1 children)

pkg/ isn't a language feature. It's just a popular convention that used to be used in the Go standard library.

[–] foehammer@programming.dev 0 points 1 year ago (1 children)

The language feature is the internal/ directory, and it's function of restricting dependencies from external programs.

[–] CodeBlooded@programming.dev 1 points 1 year ago

That is correct, internal/ is a feature. I was just clarifying that the pkg/ folder isn’t any sort of language feature as you had said it was.