9 lines
169 B
Go
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)
|
|
}
|