multica/server/pkg/agent/cursor_invocation_other.go

12 lines
317 B
Go

//go:build !windows
package agent
import "log/slog"
// platformCursorInvocation is a no-op on non-Windows platforms: cursor-agent
// is a native binary and Go's os/exec can pass argv unchanged.
func platformCursorInvocation(_ string, _ []string, _ *slog.Logger) (string, []string, bool) {
return "", nil, false
}