This commit is contained in:
Bel LaPointe
2021-12-31 15:13:20 -05:00
parent 8fca25b8f9
commit 80af3093b0
6 changed files with 33 additions and 4 deletions

7
pttodo/root.go Normal file
View File

@@ -0,0 +1,7 @@
package pttodo
type Root struct {
Todo []Todo
Scheduled []Todo
Done []Todo
}

3
pttodo/schedule.go Normal file
View File

@@ -0,0 +1,3 @@
package pttodo
type Schedule string

8
pttodo/todo.go Normal file
View File

@@ -0,0 +1,8 @@
package pttodo
type Todo struct {
Todo string
Detail string
TS TS
Schedule Schedule
}

3
pttodo/ts.go Normal file
View File

@@ -0,0 +1,3 @@
package pttodo
type TS string