Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 876 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 876 Bytes

Command Line Todo App

A simple command-line todo application written in Go that allows users to manage their tasks through basic CRUD operations.

Features

  • Interactive command-line interface
  • Create, Read, Update, and Delete tasks
  • Personalized experience with user name
  • Graceful shutdown with Ctrl+C
  • Emoji feedback for operations

Operations

  • create: Add a new task
  • read: View all tasks
  • update: Modify an existing task
  • delete: Remove a task

Running the Application

  1. Make sure you have Go installed on your system
  2. Clone the repository
  3. Navigate to the project directory
  4. Run the application:
    go run main.go

Usage

  1. Enter your name when prompted
  2. Choose an operation (create/read/update/delete)
  3. Follow the prompts for each operation
  4. Use Ctrl+C to exit the program

Requirements

  • Go 1.x or higher