feat: project setup

This commit is contained in:
darwincereska
2026-01-05 16:56:38 -05:00
parent b6107c7c06
commit 40f8a64a49
38 changed files with 350 additions and 0 deletions

8
models/book/functions.go Normal file
View File

@@ -0,0 +1,8 @@
package book
import "fmt"
// String helper method to convert dialogue struct into a string
func (d *Dialogue) String() string {
return fmt.Sprintf("%s", d.Content)
}