refactor: export systemFileFiltering Post Handler (#9359)

This commit is contained in:
DmitriyLewen
2025-08-22 10:28:07 +06:00
committed by GitHub
parent e2d30feb5e
commit 04abb7871d

View File

@@ -12,7 +12,7 @@ import (
)
func init() {
handler.RegisterPostHandlerInit(types.SystemFileFilteringPostHandler, newSystemFileFilteringPostHandler)
handler.RegisterPostHandlerInit(types.SystemFileFilteringPostHandler, NewSystemFileFilteringPostHandler)
}
const version = 1
@@ -27,7 +27,7 @@ var defaultSystemFiles = []string{
type systemFileFilteringPostHandler struct{}
func newSystemFileFilteringPostHandler(artifact.Option) (handler.PostHandler, error) {
func NewSystemFileFilteringPostHandler(artifact.Option) (handler.PostHandler, error) {
return systemFileFilteringPostHandler{}, nil
}