mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 15:05:28 +02:00
15 lines
300 B
Go
15 lines
300 B
Go
package wireguard
|
|
|
|
import (
|
|
"config-lsp/handlers/wireguard/ast"
|
|
"config-lsp/handlers/wireguard/indexes"
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
type WGDocument struct {
|
|
Config *ast.WGConfig
|
|
Indexes *indexes.WGIndexes
|
|
}
|
|
|
|
var DocumentParserMap = map[protocol.DocumentUri]*WGDocument{}
|