From a170918fbf743d8d0725b2b9a232c0b11e175042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Sun, 23 Apr 2023 15:02:04 +0200 Subject: [PATCH] Briefly document Fio loader. --- doc/bank.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/doc/bank.md b/doc/bank.md index 7dff55a..21deec0 100644 --- a/doc/bank.md +++ b/doc/bank.md @@ -82,3 +82,14 @@ Returns true if given combination of ```acc```/```bc``` is in ### Bank Fio + (import bank-fio) + +This module implements parser/loader for Fio account statements in CSV +format. + + (bank-fio-parse fn) + +* ```fn``` - path to given file with CSV export + +Uses ```csv-parse``` from ```util-csv``` module and loads the contents +into ```bank-account``` structure with list of ```bank-transaction```s.