Versions in this module Expand all Collapse all v0 v0.0.2 May 20, 2023 Changes in this version + type Chat struct + DisplayName string + ID int + LastActivity time.Time + type Client interface + Attachments func(messageID int) ([]string, error) + Chats func() ([]Chat, error) + Close func() + Messages func(chatID int, filter MessageFilter) ([]Message, error) + SendMedia func(chatID int, name string, data io.Reader) error + SendMessage func(chatID int, message string) error + func NewClient() (Client, error) + type Message struct + Delivered bool + FromMe bool + ID int + Text string + Time time.Time + type MessageFilter struct + AfterID int + BeforeID int + Limit int