mirror of
https://github.com/securego/gosec.git
synced 2024-11-06 20:15:52 +00:00
14 lines
184 B
Go
14 lines
184 B
Go
|
package main
|
||
|
|
||
|
import "text/template"
|
||
|
|
||
|
var generatedHeaderTmpl = template.Must(template.New("generated").Parse(`
|
||
|
package {{.}}
|
||
|
|
||
|
import (
|
||
|
"go/ast"
|
||
|
|
||
|
"github.com/GoASTScanner/gas"
|
||
|
)
|
||
|
`))
|