aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/aflow/flow/flows.go9
-rw-r--r--pkg/aflow/flow/flows_test.go6
2 files changed, 15 insertions, 0 deletions
diff --git a/pkg/aflow/flow/flows.go b/pkg/aflow/flow/flows.go
new file mode 100644
index 000000000..ef2d4697e
--- /dev/null
+++ b/pkg/aflow/flow/flows.go
@@ -0,0 +1,9 @@
+// Copyright 2025 syzkaller project authors. All rights reserved.
+// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
+
+package flow
+
+import (
+ _ "github.com/google/syzkaller/pkg/aflow/flow/assessment"
+ _ "github.com/google/syzkaller/pkg/aflow/flow/patching"
+)
diff --git a/pkg/aflow/flow/flows_test.go b/pkg/aflow/flow/flows_test.go
new file mode 100644
index 000000000..3c01596b5
--- /dev/null
+++ b/pkg/aflow/flow/flows_test.go
@@ -0,0 +1,6 @@
+// Copyright 2025 syzkaller project authors. All rights reserved.
+// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
+
+package flow
+
+// An empty test that runs registration and verification of all registered workflows via init functions.