chore: initial import from sless/shared-sqs (v0.1.14)
- Standalone SQS-service repository - Multi-tenant message queue service, AWS SQS compatible - Based on GoAws, with mutable tenants, auth, WebUI, Redis persistence - Ready for independent development and deployment - See doc/ and README.md for architecture and usage
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package interfaces
|
||||
|
||||
import (
|
||||
"net/url"
|
||||
|
||||
"shared-sqs/app/models"
|
||||
)
|
||||
|
||||
type AbstractRequestBody interface {
|
||||
SetAttributesFromForm(values url.Values)
|
||||
}
|
||||
|
||||
type AbstractResponseBody interface {
|
||||
GetResult() interface{}
|
||||
GetRequestId() string
|
||||
}
|
||||
|
||||
type AbstractErrorResponse interface {
|
||||
Response() models.ErrorResult
|
||||
StatusCode() int
|
||||
}
|
||||
|
||||
type AbstractPublishEntry interface {
|
||||
GetMessage() string
|
||||
GetMessageAttributes() map[string]models.MessageAttribute
|
||||
GetMessageStructure() string
|
||||
GetSubject() string
|
||||
}
|
||||
Reference in New Issue
Block a user