Files
query-orchestration/internal/queue/config.go
T

11 lines
134 B
Go
Raw Normal View History

2024-12-18 18:54:48 +00:00
package queue
import (
"github.com/aws/aws-sdk-go-v2/service/sqs"
)
type QueueConfig struct {
URL string
Client *sqs.Client
}