blob: 877ac6d065af883e5662d4b58cf4f7c13f4858d8 [file] [log] [blame]
package python
import (
"github.com/bazelbuild/bazel-gazelle/language"
)
// Python satisfies the language.Language interface. It is the Gazelle extension
// for Python rules.
type Python struct {
Configurer
Resolver
}
// NewLanguage initializes a new Python that satisfies the language.Language
// interface. This is the entrypoint for the extension initialization.
func NewLanguage() language.Language {
return &Python{}
}