mirror of
https://github.com/laravel-ls/protocol.git
synced 2026-06-16 12:04:57 +02:00
14 lines
416 B
Go
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"`
|
|
}
|