initial commit

This commit is contained in:
Seb
2024-02-15 21:43:08 -08:00
commit 975217d1f7
16 changed files with 1493 additions and 0 deletions

22
internal/models.go Normal file
View File

@@ -0,0 +1,22 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.25.0
package internal
import ()
type Job struct {
ID int64
Queue string
Job string
JobStatus string
ExecuteAfter int64
RemainingAttempts int64
ConsumerFetchedAt int64
FinishedAt int64
DedupingKey string
Errors ErrorList
CreatedAt int64
UpdatedAt int64
}