2
0
mirror of https://github.com/hibiken/asynq.git synced 2025-08-27 16:01:45 +08:00

fix: missing import statement in example code

This commit is contained in:
Andreas Thomas
2021-12-27 14:40:10 +01:00
committed by GitHub
parent 74cf804197
commit c1f08106da

View File

@@ -66,8 +66,11 @@ Next, write a package that encapsulates task creation and task handling.
package tasks
import (
"context"
"encoding/json"
"fmt"
"log"
"time"
"github.com/hibiken/asynq"
)