1
0
Fork 0
mirror of https://github.com/laravel-ls/protocol.git synced 2026-06-16 03:54:56 +02:00
protocol/server.go
2025-11-01 10:20:54 +01:00

14 lines
416 B
Go

package protocol
// ServerInfo - The server info returned from an initialize request.
//
// See https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#initializeResult
//
// @since 3.15.0
type ServerInfo struct {
// The name of the server as defined by the server.
Name string `json:"name"`
// The server's version, if provided.
Version string `json:"version,omitempty"`
}