package atlas import _ "embed" // DataJSON is the authored atlas content (substrate + stage narrative). // Sourced/generated facts are overlaid onto it at Build time. // //go:embed atlas.json var DataJSON []byte // Default builds the atlas from the embedded authored data, overlaying the // given CI workflow (for the stage marked generate:ci-jobs). func Default(workflow []byte) (Atlas, error) { return Build(DataJSON, workflow) }