Versions in this module Expand all Collapse all v0 v0.1.0 Feb 27, 2025 Changes in this version + func Api(router *gin.Engine, cfg APIMuxConfig) + func JobsRoutesV1(router *gin.Engine, jobsHandler *Jobs) + func LimitAndOffset(ctx *gin.Context) (uint64, uint64) + func OpenApiRoute(cfg OpenApiConfig, router *gin.Engine) + type APIMuxConfig struct + DB *sqlx.DB + Log *otelzap.Logger + OpenApi OpenApiConfig + type ErrorResponse struct + Error string + type Jobs struct + func NewJobsHandler(service *jobService.Service) *Jobs + func (j *Jobs) CreateJob() gin.HandlerFunc + func (j *Jobs) DeleteJob() gin.HandlerFunc + func (j *Jobs) GetJob() gin.HandlerFunc + func (j *Jobs) GetJobExecutions() gin.HandlerFunc + func (j *Jobs) ListJobs() gin.HandlerFunc + func (j *Jobs) UpdateJob() gin.HandlerFunc + type OpenApiConfig struct + Enabled bool + Host string + Scheme string