Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DAO ¶
type DAO interface { // Create the job log Create(ctx context.Context, jobLog *models.JobLog) (id int64, err error) // Get the job log specified by UUID Get(ctx context.Context, uuid string) (jobLog *models.JobLog, err error) // DeleteBefore the job log specified by time DeleteBefore(ctx context.Context, t time.Time) (id int64, err error) }
DAO is the data access object for job log
Click to show internal directories.
Click to hide internal directories.