LSP-server-example
17 строк · 284.0 Байт
1package handlers
2
3import (
4"encoding/json"
5"log/slog"
6)
7
8const InitializedNotification = "initialized"
9
10type Initialized struct {
11}
12
13func (i Initialized) Call(params json.RawMessage) error {
14slog.Info("received initialized notification", slog.Any("params", params))
15
16return nil
17}
18