MCPcopy Index your code
hub / github.com/coder/mux / parseWorkflowDescription

Function parseWorkflowDescription

src/node/services/workflows/workflowDescription.ts:15–21  ·  view source on GitHub ↗
(source: string)

Source from the content-addressed store, hash-verified

13} from "./staticWorkflowMetadata";
14
15export function parseWorkflowDescription(source: string): string | null {
16 try {
17 return parseWorkflowMetadataDescription(parseStaticWorkflowMetadataLiteral(source));
18 } catch {
19 return null;
20 }
21}
22
23export function parseWorkflowName(source: string): string | null {
24 try {

Callers 1

Tested by

no test coverage detected