anypay 0.1.0

AnyPay is a payment processing platform that allows you to accept payments from multiple cryptocurrencies and fiat currencies.
Documentation
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;

pub struct AmqpClient;

impl AmqpClient {
    pub async fn new(url: &str) -> Result<Self> {
        // TODO: Implement AMQP connection
        Ok(Self)
    }
}