CLI for simple (toy) transaction engine.
Application processes an input transactions file and produces output as results.
You can write output of application into a file as shown below.
Pass csv file name to be processed.
cargo run — transactions.csv > accounts.csv
csv
file should be in this format:
type, client, tx, amount
deposit 1, 1, 1.0
withdrawal 2, 2, 2.0
...