2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-09-20 02:55:54 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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"
)