This is a sample Go project that implements basic CRUD operations to manage tasks. The purpose of this project is to provide a simple demonstration of creating a CRUD application in Go.
This project offers the following functionalities:
- Create Task: You can add a new task to the list.
- List Tasks: View all existing tasks.
- Update Task: Mark a task as completed or update its description.
- Delete Task: Remove a task from the list.
To run this project, you will need Go installed on your system. Make sure it is set up correctly.
-
Clone this repository to your local system:
git clone https://github.com/guifelippe/task-crud-go.git
-
Navigate to the project directory:
cd task-crud-go
-
Run the Go application:
go run main.go
This will start the task management application.
The application supports the following commands:
- Create Task
- List Task
- Update Task
- Delete Task