mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
16 lines
217 B
Go
16 lines
217 B
Go
package hostparser
|
|
|
|
import (
|
|
"config-lsp/common"
|
|
commonparser "config-lsp/common/parser"
|
|
)
|
|
|
|
type Host struct {
|
|
Hosts []*HostValue
|
|
}
|
|
|
|
type HostValue struct {
|
|
common.LocationRange
|
|
Value commonparser.ParsedString
|
|
}
|