Files
speakeasy/models/book/functions.go
2026-01-05 16:57:42 -05:00

9 lines
169 B
Go

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)
}