This repository has been archived on 2022-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
dataupdater/cron/tasks/task.go
2021-04-25 17:02:58 +02:00

13 lines
154 B
Go

package tasks
import (
"github.com/go-pg/pg/v10"
"github.com/tribalwarshelp/cron/cron/queue"
)
type task struct {
db *pg.DB
queue queue.Queue
}