rename
This commit is contained in:
7
pttodo/root.go
Normal file
7
pttodo/root.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package pttodo
|
||||
|
||||
type Root struct {
|
||||
Todo []Todo
|
||||
Scheduled []Todo
|
||||
Done []Todo
|
||||
}
|
||||
3
pttodo/schedule.go
Normal file
3
pttodo/schedule.go
Normal file
@@ -0,0 +1,3 @@
|
||||
package pttodo
|
||||
|
||||
type Schedule string
|
||||
8
pttodo/todo.go
Normal file
8
pttodo/todo.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package pttodo
|
||||
|
||||
type Todo struct {
|
||||
Todo string
|
||||
Detail string
|
||||
TS TS
|
||||
Schedule Schedule
|
||||
}
|
||||
3
pttodo/ts.go
Normal file
3
pttodo/ts.go
Normal file
@@ -0,0 +1,3 @@
|
||||
package pttodo
|
||||
|
||||
type TS string
|
||||
Reference in New Issue
Block a user