mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
16 lines
314 B
Go
16 lines
314 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 SSHDDocument struct {
|
|
Config *ast.SSHDConfig
|
|
Indexes *indexes.SSHDIndexes
|
|
}
|
|
|
|
var DocumentParserMap = map[protocol.DocumentUri]*SSHDDocument{}
|