Combine todo.txt related stuff, remove old stuff
This commit is contained in:
parent
eaab256cca
commit
8f1b2856dc
18 changed files with 384 additions and 1384 deletions
14
src/TaskMachine/TaskList.hs
Normal file
14
src/TaskMachine/TaskList.hs
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue