mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-19 15:35:28 +02:00
16 lines
312 B
Go
16 lines
312 B
Go
package sshdconfig
|
|
|
|
import (
|
|
"config-lsp/handlers/sshd_config/ast"
|
|
"config-lsp/handlers/sshd_config/indexes"
|
|
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
type SSHDocument struct {
|
|
Config *ast.SSHDConfig
|
|
Indexes *indexes.SSHDIndexes
|
|
}
|
|
|
|
var DocumentParserMap = map[protocol.DocumentUri]*SSHDocument{}
|