9 lines
128 B
Go
9 lines
128 B
Go
|
package queue
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Queue interface {
|
||
|
Push(payload []byte) error
|
||
|
Get(ctx context.Context) ([]byte, error)
|
||
|
}
|