From 45adbf31c501e802726ee9dadc3c7701fbc2d735 Mon Sep 17 00:00:00 2001 From: Adriano Caloiaro Date: Wed, 1 Mar 2023 11:08:05 -0700 Subject: [PATCH] Simpllify getting started example in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8cb9202..ca4cf06 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Enqueuing jobs adds jobs to the specified queue to be processed asynchronously. ```go ctx := context.Background() nq, _ := neoq.New(ctx) -jid, _ := nq.Enqueue(ctx, &jobs.Job{ +nq.Enqueue(ctx, &jobs.Job{ Queue: "hello_world", Payload: map[string]interface{}{ "message": "hello world",