-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The following features are now available: - cardcomplete - erste - flatex - revolut Alls importers are active by default. closes #10 Signed-off-by: Peter Nirschl <[email protected]>
- Loading branch information
Showing
8 changed files
with
81 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
/// hledger importer for the Erste Bank JSON files | ||
#[cfg(feature = "erste")] | ||
pub mod erste; | ||
|
||
/// hledger importer for Revolut CSV export files | ||
#[cfg(feature = "revolut")] | ||
pub mod revolut; | ||
|
||
/// hledger importer for Cardcomplete XML export files | ||
#[cfg(feature = "cardcomplete")] | ||
pub mod cardcomplete; | ||
|
||
/// hledger importer for Flatex CSV export files (of settlement accounts) | ||
#[cfg(feature = "flatex")] | ||
pub mod flatex_csv; | ||
|
||
/// hledger importer for Flatex PDF invoices | ||
#[cfg(feature = "flatex")] | ||
pub mod flatex_inv; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters