From 45e65c66bbcded97135503068881214ee644d2f7 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Sun, 10 Nov 2024 02:48:58 +0100 Subject: Added README.md with future plans --- workstack.go | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'workstack.go') diff --git a/workstack.go b/workstack.go index 1205039..f7bc41c 100644 --- a/workstack.go +++ b/workstack.go @@ -3,28 +3,7 @@ package workstack // Workstack or ws for short is a program that manages To-Do's in a stack-based fashion. It tries // to guide your focus to your three most important tasks such that you do not get distracted by // other tasks. -// Every task added starts as inactive "[ ]" and can be marked as done by changing the status to -// "[x]". -// When the programs exits Tasks are saved to a tasks.gob file, this will truncate (os.Create) the -// existing file. - -// TODO's -// - edit functionality -// - import: read multiple lines from stdin and import them as taks -// - parsing text as Tasks, maybe helper program? -// - clocking functionality with a 'task' command -// - testing: -// - [ ] add -// - [ ] done -// - [ ] undone -// - [ ] del -// - [ ] pc -// - [ ] -// - [ ] ls -// - [ ] list -// - [ ] tag -// - [ ] tagd -// - [ ] tagl +// Task have a Do state where they are on the stack and a Done state when they are archived. import ( "fmt" -- cgit v1.2.3