hugo-cms/models/job.go

8 lines
90 B
Go

package models
import "context"
type Job struct {
Do func(ctx context.Context) error
}