mirror of
https://github.com/Crocmagnon/fatcontext.git
synced 2024-11-14 04:03:57 +01:00
11 lines
178 B
Go
11 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)
|
||
|
}
|