hugo-cms/models/job.go

8 lines
90 B
Go
Raw Permalink Normal View History

2025-01-26 23:19:31 +00:00
package models
import "context"
type Job struct {
Do func(ctx context.Context) error
}