A tool to parse input to beancount directives.
To use this tool, you can add to your pom.xml
or build.gradle.kts
.
<dependency>
<groupId>com.qqviaja.tools</groupId>
<artifactId>beancount-antlr-parser</artifactId>
<version>1.1</version>
</dependency>
dependencies {
implementation("com.qqviaja.tools:beancount-antlr-parser:1.1")
}
Use BeancountAntlrParser#parser
to parse input to Expense
entity.
If any exception, it will return null
.
- Kimi Chen - Initial work - KimiChen
This project is licensed under the MIT License - see the LICENSE.md file for details