sqstransfer 0.2.0

CLI tool that transfers Amazon SQS messages to another SQS.
Documentation
1
2
3
4
5
6
7
use sqstransfer::{parse, run};

fn main() {
    let config = parse();

    run(&config);
}