Skip to main content

src/webql/assembler/scheduler/diagnostic.gleam

pub type DiagnosticKind {
  CycleDetected(remaining: List(String))
  InvalidPlan
}

pub type Diagnostic {
  Diagnostic(kind: DiagnosticKind)
}