forked from elliotchance/mocksqs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurl.go
22 lines (18 loc) · 825 Bytes
/
url.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package mocksqs
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/service/sqs"
)
// GetQueueUrl is not implemented. It will panic in all cases.
func (client *SQS) GetQueueUrl(*sqs.GetQueueUrlInput) (*sqs.GetQueueUrlOutput, error) {
panic("GetQueueUrl is not implemented")
}
// GetQueueUrlWithContext is not implemented. It will panic in all cases.
func (client *SQS) GetQueueUrlWithContext(aws.Context, *sqs.GetQueueUrlInput, ...request.Option) (*sqs.GetQueueUrlOutput, error) {
panic("GetQueueUrlWithContext is not implemented")
}
// GetQueueUrlRequest is not implemented. It will panic in all cases.
func (client *SQS) GetQueueUrlRequest(*sqs.GetQueueUrlInput) (*request.Request, *sqs.GetQueueUrlOutput) {
panic("GetQueueUrlRequest is not implemented")
}