todo sqlite and inmemory repo

This commit is contained in:
2025-02-06 16:33:49 -05:00
parent 21747e0f72
commit bb3d9abb7e
7 changed files with 233 additions and 12 deletions

7
internal/models/todo.go Normal file
View File

@@ -0,0 +1,7 @@
package models
type Todo struct {
Id int64
Name string
Done bool
}