.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.0 / go / analysis / passes / fieldalignment / cmd / fieldalignment / main.go
1 // Copyright 2021 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4 package main
5
6 import (
7         "golang.org/x/tools/go/analysis/passes/fieldalignment"
8         "golang.org/x/tools/go/analysis/singlechecker"
9 )
10
11 func main() { singlechecker.Main(fieldalignment.Analyzer) }