We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
systemFileFiltering
1 parent e2d30fe commit 04abb78Copy full SHA for 04abb78
pkg/fanal/handler/sysfile/filter.go
@@ -12,7 +12,7 @@ import (
12
)
13
14
func init() {
15
- handler.RegisterPostHandlerInit(types.SystemFileFilteringPostHandler, newSystemFileFilteringPostHandler)
+ handler.RegisterPostHandlerInit(types.SystemFileFilteringPostHandler, NewSystemFileFilteringPostHandler)
16
}
17
18
const version = 1
@@ -27,7 +27,7 @@ var defaultSystemFiles = []string{
27
28
type systemFileFilteringPostHandler struct{}
29
30
-func newSystemFileFilteringPostHandler(artifact.Option) (handler.PostHandler, error) {
+func NewSystemFileFilteringPostHandler(artifact.Option) (handler.PostHandler, error) {
31
return systemFileFilteringPostHandler{}, nil
32
33
0 commit comments