|
@@ -48,8 +48,8 @@ type model struct {
|
|
|
|
|
|
func InitialModel() model {
|
|
|
shelf := NewFilesystemShelf(FS_SAVE_LOCATION)
|
|
|
-
|
|
|
-
|
|
|
+ shelf.AddTask(Task{Id: 1, Title: "This is a sample task", Desc: "Quick sample task that im testing the storage with",
|
|
|
+ Due: time.Now().AddDate(0, 0, 2), Done: false, Priority: 1})
|
|
|
return model{
|
|
|
|
|
|
choices: GetTaskNames(shelf.GetAll()),
|