diff --git a/todo.go b/todo.go index ed4c7afa92d8f66e0dcc7237c3847ec7b09da5e8..b1db460b937f64da70574bb9f7d66b50ffcea220 100644 --- a/todo.go +++ b/todo.go @@ -19,16 +19,6 @@ type Task struct { ListId int } -type CreateTaskRequest struct { - Name string `json:"name"` - ListId int `json:"list_id"` -} - -type List struct { - Id int - Name string -} - type ListCreateRequest struct { Name string }