internal/lsp/language_id.go (9 lines of code) (raw):
package lsp
// LanguageID represents the coding language
// of a file
type LanguageID string
const (
Terraform LanguageID = "terraform"
Tfvars LanguageID = "terraform-vars"
)
func (l LanguageID) String() string {
return string(l)
}