mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
15 lines
300 B
Go
15 lines
300 B
Go
package hosts
|
|
|
|
import (
|
|
"config-lsp/handlers/hosts/ast"
|
|
"config-lsp/handlers/hosts/indexes"
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
type HostsDocument struct {
|
|
Parser *ast.HostsParser
|
|
Indexes *indexes.HostsIndexes
|
|
}
|
|
|
|
var DocumentParserMap = map[protocol.DocumentUri]*HostsDocument{}
|