# Simple CLI Todo App
Simple Todo app with command line interface. Supports adding, deleting, and viewing task entries.

## Dependencies
Requires Python 3 and Click

Install Click: `pip install click`

## How to use
### Running
either run it from your code editor or Ide or type `python todo.py [command]` in your command line.
(insted of [command] add desired command u want)

### Commands
|Command | Description|
|-------|-------|
|`add`| Adds a task. Prompts user for task text. |
|`done`| Deletes a task. Prompts user for task id. |
|`tasks`| Displays all inputted tasks. |
