diff options
author | William Carroll <wpcarro@gmail.com> | 2020-02-07T21·33+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-02-07T21·33+0000 |
commit | 74211a3c029a157dbd9499b3fe1d29333a8a3a1d (patch) | |
tree | 93ef0d483b8ff5eb5f038f4a0f775844d203b241 /.gitignore | |
parent | 4f63b99cee4af6b5ba55dd2b821876c71dc7cf7d (diff) |
Support serde for Monzo and YNAB transaction structs
Define transaction structs for both Monzo and YNAB. Each package has a `main` function that runs some shallow but preliminary round-trip tests for the serializers and decoders. The fixtures.json file that each of them is referencing has been ignored in case either contains confidential data of which I'm unaware.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 83bf215fa9b4..b1338507721e 100644 --- a/.gitignore +++ b/.gitignore @@ -25,4 +25,6 @@ Vundle.vim # Python __pycache__ -*.class \ No newline at end of file +*.class +/monzo_ynab/ynab/fixture.json +/monzo_ynab/monzo/fixture.json |