2024-08-31 19:18:57 +02:00

14 lines
188 B
Go

package analyzer
import (
"config-lsp/handlers/hosts"
protocol "github.com/tliron/glsp/protocol_3_16"
)
func Analyze(
d *hosts.HostsDocument,
) []protocol.Diagnostic {
return nil
}