From 0a4dd7bd58bed253cd3b0c6723cb5074232fff36 Mon Sep 17 00:00:00 2001 From: Oarkflow Date: Sat, 16 Nov 2024 16:07:58 +0545 Subject: [PATCH] update: dependencies --- examples/dag.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/dag.go b/examples/dag.go index cc1f62b..2726854 100644 --- a/examples/dag.go +++ b/examples/dag.go @@ -25,7 +25,8 @@ func subDAG() *dag.DAG { AddNode("Store data", "store:data", &tasks.StoreData{Operation: dag.Operation{Type: "process"}}, true). AddNode("Send SMS", "send:sms", &tasks.SendSms{Operation: dag.Operation{Type: "process"}}). AddNode("Notification", "notification", &tasks.InAppNotification{Operation: dag.Operation{Type: "process"}}). - AddEdge("Store Data to send sms and notification", "store:data", "send:sms", "notification") + AddEdge("Store Data to send sms", "store:data", "send:sms"). + AddEdge("Store Data to notification", "send:sms", "notification") return f }