The old path carried the reachableceo org prefix while the repo lives at
git.knownelement.com/ukrrs/MOPAC; the drift was cited as doc rot. go.mod
and every internal import updated; build/vet/test clean in the builder.
💘 Generated with Crush
Assisted-by: Crush:glm-5.2
20 lines
467 B
Go
20 lines
467 B
Go
package intake
|
|
|
|
import (
|
|
"ukrrs.com/mopac/harness/internal/config"
|
|
"ukrrs.com/mopac/harness/internal/task"
|
|
)
|
|
|
|
// DemoTask builds the MVP demo issue from the [demo] config section: the
|
|
// smoke path that exercises the whole loop (intake -> turn -> REPORT) without
|
|
// needing a reachable Redmine.
|
|
func DemoTask(d config.DemoConfig) task.Task {
|
|
return task.Task{
|
|
ID: d.ID,
|
|
Subject: d.Subject,
|
|
Prompt: d.Prompt,
|
|
Class: d.Class,
|
|
Source: "demo",
|
|
}
|
|
}
|