aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkg/aflow/ai/ai.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkg/aflow/ai/ai.go b/pkg/aflow/ai/ai.go
new file mode 100644
index 000000000..0905fe5aa
--- /dev/null
+++ b/pkg/aflow/ai/ai.go
@@ -0,0 +1,12 @@
+// Copyright 2026 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.
+
+// ai package contains common definitions that are used across pkg/aflow/... and dashboard/{app,dashapi}.
+package ai
+
+type WorkflowType string
+
+const (
+ WorkflowPatching = WorkflowType("patching")
+ WorkflowAssessmentKCSAN = WorkflowType("assessment-kcsan")
+)