gowhatsapp-multi-devicewhatsapp-apiwhatsapprestgolangwhatsapp-web-multi-devicewhatsapp-api-gorest-apigolang-whatsapp-apigolang-whatsappbot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
337 B
15 lines
337 B
package group
|
|
|
|
import "context"
|
|
|
|
type IGroupService interface {
|
|
JoinGroupWithLink(ctx context.Context, request JoinGroupWithLinkRequest) (response JoinGroupWithLinkResponse, err error)
|
|
}
|
|
|
|
type JoinGroupWithLinkRequest struct {
|
|
Link string `json:"link" form:"link"`
|
|
}
|
|
|
|
type JoinGroupWithLinkResponse struct {
|
|
JID string `json:"jid"`
|
|
}
|