mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
16 lines
307 B
Go
16 lines
307 B
Go
package sshconfig
|
|
|
|
import (
|
|
"config-lsp/handlers/ssh_config/ast"
|
|
"config-lsp/handlers/ssh_config/indexes"
|
|
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
type SSHDocument struct {
|
|
Config *ast.SSHConfig
|
|
Indexes *indexes.SSHIndexes
|
|
}
|
|
|
|
var DocumentParserMap = map[protocol.DocumentUri]*SSHDocument{}
|