Files
warmbly/internal/client/goog/helper.go
T
2026-01-17 14:11:14 +00:00

11 lines
172 B
Go

package goog
import (
"fmt"
"strings"
)
func (c *Client) GetAddress() string {
return fmt.Sprintf("%s <%s>", strings.TrimSpace(c.FirstName+" "+c.LastName), c.Email)
}