Skip to main content

Project Title

Description

This project is a Deno application. The main functionality of the application is to get transactions and tags. The project structure includes a main.ts file, which is the entry point of the application. There are also test files for the getTransactions and getTags functions, indicating that the project follows good development practices with a focus on testing.

Files

  • .gitignore: This file is used to specify the files and directories that should be ignored by Git.
  • deno.json: This file is related to the Deno runtime environment. It contains configuration and dependency information, as well as tasks for running, testing, formatting, and linting the code.
  • main.ts: This is the main entry point of the application. It exports the getTransactions and getTags functions.
  • src/getTags.test.ts: This file contains a test for the getTags function. The test checks that the function returns an array with a length greater than 0.
  • src/getTransactions.test.ts: This file contains a test for the getTransactions function. The test checks that the function returns an array with a length greater than 0.

Installation

To install the project, you will need to have Deno installed on your machine. Once Deno is installed, you can clone the repository and run the main.ts file.

Usage

To use the application, you can import the getTransactions and getTags functions from the main.ts file and call them in your code.

Contributing

To contribute to the project, you can create a fork of the repository, make your changes, and then submit a pull request.

License

To be defined.