8 lines
90 B
Go
8 lines
90 B
Go
package models
|
|
|
|
import "context"
|
|
|
|
type Job struct {
|
|
Do func(ctx context.Context) error
|
|
}
|