blob: 2f35fb06083012652b30862f1fe28d422aff2f02 [file] [log] [blame]
// Copyright 2023 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.
// The unusedparams command runs the unusedparams analyzer.
package main
import (
"golang.org/x/tools/go/analysis/singlechecker"
"golang.org/x/tools/gopls/internal/analysis/unusedparams"
)
func main() { singlechecker.Main(unusedparams.Analyzer) }