Skip to content

一个日常任务管理器使用go语言的实现

Notifications You must be signed in to change notification settings

Qaraku/task-tracker-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

task-tracker-go

from https://roadmap.sh/projects/task-tracker 一个日常任务管理器使用go语言的实现

# Adding a new task
task-cli add "Buy groceries"
# Output: Task added successfully (ID: 1)

# Updating and deleting tasks
task-cli update 1 "Buy groceries and cook dinner"
task-cli delete 1

# Marking a task as in progress or done
task-cli mark-in-progress 1
task-cli mark-done 1

# Listing all tasks
task-cli list

# Listing tasks by status
task-cli list done
task-cli list todo
task-cli list in-progress

About

一个日常任务管理器使用go语言的实现

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages