idecnode/pkg/model/echo.go

18 lines
251 B
Go
Raw Normal View History

2024-10-20 03:39:07 +03:00
package model
import (
"fmt"
"strings"
)
type Echo struct {
Name string
Description string
Count int
Messages []string
}
func (e *Echo) Format() string {
return fmt.Sprintf("%s\n%s", e.Name, strings.Join(e.Messages, "\n"))
}