2024-09-10 23:11:14 +02:00

15 lines
239 B
Go

package sshdconfig
import (
"config-lsp/handlers/sshd_config/ast"
protocol "github.com/tliron/glsp/protocol_3_16"
)
type SSHDocument struct {
Config *ast.SSHConfig
}
var DocumentParserMap = map[protocol.DocumentUri]*SSHDocument{}