Documentation
¶
Overview ¶
Package languages provides the complete list of supported language ecosystems.
This package exists to break import cycles: the individual language packages (python, rust, etc.) import pkg/deps, so pkg/deps cannot import them back. Instead, consumers that need the full language list import this package.
Usage:
import "github.com/stacktower-io/stacktower/pkg/core/deps/languages"
for _, lang := range languages.All {
fmt.Println(lang.Name)
}
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var All = []*deps.Language{ python.Language, rust.Language, javascript.Language, ruby.Language, php.Language, java.Language, golang.Language, }
All is the canonical list of supported package ecosystems. Each language provides resolvers for package registries and manifest parsers.
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.