mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-19 15:35:28 +02:00
13 lines
196 B
Go
13 lines
196 B
Go
package analyzer
|
|
|
|
import (
|
|
"config-lsp/handlers/sshd_config"
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
func Analyze(
|
|
d *sshdconfig.SSHDocument,
|
|
) []protocol.Diagnostic {
|
|
return nil
|
|
}
|