config-lsp/handlers/sshd_config/lsp/workspace-execute-command.go
2024-09-10 23:11:14 +02:00

11 lines
256 B
Go

package lsp
import (
"github.com/tliron/glsp"
protocol "github.com/tliron/glsp/protocol_3_16"
)
func WorkspaceExecuteCommand(context *glsp.Context, params *protocol.ExecuteCommandParams) (*protocol.ApplyWorkspaceEditParams, error) {
return nil, nil
}