Combine todo.txt related stuff, remove old stuff

This commit is contained in:
Joscha 2018-09-11 17:10:17 +00:00
parent eaab256cca
commit 8f1b2856dc
18 changed files with 384 additions and 1384 deletions

View file

@ -0,0 +1,14 @@
-- | A way to store the 'Task's that preserves the original task order
module TaskMachine.TaskList
( LTask(..)
) where
import TaskMachine.Todotxt
data LTask = LTask
{ ltaskNumber :: Integer
-- ^ Sort by this number to get the original order of the tasks
, ltaskTast :: Task
-- ^ The 'Task' itself
}