feat: initial project setup

This commit is contained in:
2025-12-05 19:14:01 -03:00
commit 8e790ef8ed
7 changed files with 201 additions and 0 deletions

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

@@ -0,0 +1,7 @@
package models
type Book struct {
ID string `json:"id"`
Title string `json:"title"`
Author string `json:"author"`
}