mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-25 04:24:33 +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
|
||
|
}
|