derust 0.2.0

Easy way to start your Rust asynchronous application server using Tokio and Axum frameworks.
Documentation
1
2
3
4
5
6
7
8
9
use crate::awsx::SqsClient;
use aws_config::SdkConfig;
use aws_sdk_sqs::Client;

pub async fn sqs_client(aws_sdk_config: &SdkConfig) -> SqsClient {
    SqsClient {
        client: Client::new(aws_sdk_config),
    }
}