Myzel394 a0dca94b9d
refactor(server): Refactor Wireguard config; Improve completions + bunch of other stuff
Signed-off-by: Myzel394 <github.7a2op@simplelogin.co>
2025-03-16 00:23:54 +01:00

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{}