Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1001 Bytes

README.md

File metadata and controls

49 lines (35 loc) · 1001 Bytes

Task Manager

This is a simple task manager application written in Go. It allows users to create, update, delete, and list tasks.

Features

  • Create a new task
  • Update an existing task
  • Delete a task
  • List all tasks

Installation

  1. Clone the repository:
    git clone https://github.com/michaelchristwin/task-manager.git
  2. Navigate to the project directory:
    cd task-manager
  3. Build the application:
    go build

Usage

Run the application:

./task-manager

Contributing

  1. Fork the repository
  2. Create a new branch (git checkout -b feature-branch)
  3. Commit your changes (git commit -am 'Add new feature')
  4. Push to the branch (git push origin feature-branch)
  5. Create a new Pull Request