mirror of
https://github.com/Crocmagnon/fatcontext.git
synced 2024-11-12 19:23:58 +01:00
10 lines
178 B
Go
10 lines
178 B
Go
package main
|
|
|
|
import (
|
|
"github.com/Crocmagnon/foreshadow/pkg/analyzer"
|
|
"golang.org/x/tools/go/analysis/singlechecker"
|
|
)
|
|
|
|
func main() {
|
|
singlechecker.Main(analyzer.Analyzer)
|
|
}
|