src/webql/assembler/scheduler/diagnostic.gleam
pub type DiagnosticKind {
CycleDetected(remaining: List(String))
InvalidPlan
}
pub type Diagnostic {
Diagnostic(kind: DiagnosticKind)
}
pub type DiagnosticKind {
CycleDetected(remaining: List(String))
InvalidPlan
}
pub type Diagnostic {
Diagnostic(kind: DiagnosticKind)
}