11 lines
134 B
Go
11 lines
134 B
Go
package queue
|
|
|
|
import (
|
|
"github.com/aws/aws-sdk-go-v2/service/sqs"
|
|
)
|
|
|
|
type QueueConfig struct {
|
|
URL string
|
|
Client *sqs.Client
|
|
}
|