blob: a00380ae7917b3094bb4a1162129c1b01fdda984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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
// Note: don't change string values of these types w/o a good reason.
// They are stored in the dashboard database as strings.
const (
WorkflowPatching = WorkflowType("patching")
WorkflowModeration = WorkflowType("moderation")
WorkflowAssessmentKCSAN = WorkflowType("assessment-kcsan")
)
|