mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
14 lines
233 B
Go
14 lines
233 B
Go
package shared
|
|
|
|
import (
|
|
"config-lsp/handlers/fstab/ast"
|
|
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
type FstabDocument struct {
|
|
Config *ast.FstabConfig
|
|
}
|
|
|
|
var DocumentParserMap = map[protocol.DocumentUri]*FstabDocument{}
|