[Commit - Bindings Package names]
Changing the names of the packages directory so to be consistent with name of the company . It is to be noted that package name can not have hyphen "-" in the name. So changing the directory names and putting under company names. For example - dynamodb package would be dapr/components-contrib/bindings/aws/dynamodb
This commit is contained in:
parent
5a27c138e7
commit
8c9a3bd806
|
@ -9,19 +9,19 @@ List of bindings and their status:
|
|||
| ------------- | -------------- | ------------- | ------------- |
|
||||
| [Kafka](./kafka) | V | V | Experimental |
|
||||
| [RabbitMQ](./rabbitmq) | V | V | Experimental |
|
||||
| [AWS SQS](./sqs) | V | V | Experimental |
|
||||
| [AWS SNS](./sns) | | V | Experimental |
|
||||
| [GCP Cloud Pub/Sub](./pubsub) | V | V | Experimental |
|
||||
| [Azure EventHubs](./eventhubs) | V | V | Experimental |
|
||||
| [Azure CosmosDB](./cosmosdb) | | V | Experimental |
|
||||
| [GCP Storage Bucket](./gcpbucket) | | V | Experimental |
|
||||
| [AWS SQS](./aws/sqs) | V | V | Experimental |
|
||||
| [AWS SNS](./aws/sns) | | V | Experimental |
|
||||
| [GCP Cloud Pub/Sub](./gcp/pubsub) | V | V | Experimental |
|
||||
| [Azure EventHubs](./azure/eventhubs) | V | V | Experimental |
|
||||
| [Azure CosmosDB](./azure/cosmosdb) | | V | Experimental |
|
||||
| [GCP Storage Bucket](./gcp/bucket) | | V | Experimental |
|
||||
| [HTTP](./http) | | V | Experimental |
|
||||
| [MQTT](./mqtt) | V | V | Experimental |
|
||||
| [Redis](./redis) | | V | Experimental |
|
||||
| [AWS DynamoDB](./dynamodb) | | V | Experimental |
|
||||
| [AWS S3](./s3) | | V | Experimental |
|
||||
| [Azure Blob Storage](./blobstorage) | | V | Experimental |
|
||||
| [Azure Service Bus Queues](./servicebusqueues) | V | V | Experimental |
|
||||
| [AWS DynamoDB](./aws/dynamodb) | | V | Experimental |
|
||||
| [AWS S3](./aws/s3) | | V | Experimental |
|
||||
| [Azure Blob Storage](./azure/blobstorage) | | V | Experimental |
|
||||
| [Azure Service Bus Queues](./azure/servicebusqueues) | V | V | Experimental |
|
||||
| [Kubernetes Events](./kubernetes) | V | | Experimental |
|
||||
|
||||
## Implementing a new binding
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
// Licensed under the MIT License.
|
||||
// ------------------------------------------------------------
|
||||
|
||||
package gcpbucket
|
||||
package bucket
|
||||
|
||||
import (
|
||||
"context"
|
|
@ -3,7 +3,7 @@
|
|||
// Licensed under the MIT License.
|
||||
// ------------------------------------------------------------
|
||||
|
||||
package gcpbucket
|
||||
package bucket
|
||||
|
||||
import (
|
||||
"encoding/json"
|
Loading…
Reference in New Issue