forked from elliotchance/mocksqs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurge.go
22 lines (18 loc) · 810 Bytes
/
purge.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"
)
// PurgeQueue is not implemented. It will panic in all cases.
func (client *SQS) PurgeQueue(*sqs.PurgeQueueInput) (*sqs.PurgeQueueOutput, error) {
panic("PurgeQueue is not implemented")
}
// PurgeQueueWithContext is not implemented. It will panic in all cases.
func (client *SQS) PurgeQueueWithContext(aws.Context, *sqs.PurgeQueueInput, ...request.Option) (*sqs.PurgeQueueOutput, error) {
panic("PurgeQueueWithContext is not implemented")
}
// PurgeQueueRequest is not implemented. It will panic in all cases.
func (client *SQS) PurgeQueueRequest(*sqs.PurgeQueueInput) (*request.Request, *sqs.PurgeQueueOutput) {
panic("PurgeQueueRequest is not implemented")
}