blob: 284c01d4447a6cc4f9b3b8285138d58866511807 [file] [edit]
// Copyright 2026 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package server
import (
"context"
"golang.org/x/tools/gopls/internal/golang"
"golang.org/x/tools/gopls/internal/protocol"
)
func (s *server) ResolveCommand(ctx context.Context, param *protocol.ExecuteCommandParams) (*protocol.ExecuteCommandParams, error) {
return golang.ResolveCommand(ctx, param, s.Options().ClientOptions.SupportedInteractiveInputTypes)
}