mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-17 00:23:41 +00:00
14 lines
224 B
Go
14 lines
224 B
Go
|
|
package handlers
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"github.com/riverqueue/river"
|
||
|
|
|
||
|
|
"github.com/zitadel/zitadel/internal/queue"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Queue interface {
|
||
|
|
Insert(ctx context.Context, args river.JobArgs, opts ...queue.InsertOpt) error
|
||
|
|
}
|