orbis/internal/worker/repositories/models.go
kjuulh e94271d5e2
All checks were successful
continuous-integration/drone/push Build is passing
feat: enable worker process
2025-01-17 21:28:23 +01:00

16 lines
296 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.23.0
package repositories
import (
"github.com/google/uuid"
"github.com/jackc/pgx/v5/pgtype"
)
type WorkerRegister struct {
WorkerID uuid.UUID `json:"worker_id"`
HeartBeat pgtype.Timestamptz `json:"heart_beat"`
}