Discover Packages
github.com/lucagez/qron
graph
model
package
Version:
v0.1.2
Opens a new window with list of versions in this module.
Published: Feb 18, 2023
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type CommitArgs struct {
ID int64 `json:"id"`
Expr *string `json:"expr"`
State *string `json:"state"`
}
type CreateJobArgs struct {
Expr string `json:"expr"`
Name string `json:"name"`
State string `json:"state"`
Timeout *int `json:"timeout"`
StartAt *time .Time `json:"start_at"`
Meta *string `json:"meta"`
Retries *int `json:"retries"`
}
type QueryJobsArgs struct {
Limit int `json:"limit"`
Skip int `json:"skip"`
Filter string `json:"filter"`
}
type QueryJobsMetaArgs struct {
Limit int `json:"limit"`
Skip int `json:"skip"`
IsOneShot bool `json:"isOneShot"`
Name *string `json:"name"`
From time .Time `json:"from"`
To time .Time `json:"to"`
Statuses []string `json:"statuses"`
Query *string `json:"query"`
}
type SearchJobsByMetaResult struct {
Jobs []sqlc .TinyJob `json:"jobs"`
Total int `json:"total"`
}
type UpdateJobArgs struct {
Expr *string `json:"expr"`
State *string `json:"state"`
Timeout *int `json:"timeout"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.