mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
10 lines
231 B
Go
10 lines
231 B
Go
package protocol
|
|
|
|
import (
|
|
v1protocol "github.com/status-im/status-go/protocol/v1"
|
|
)
|
|
|
|
func newProtocolGroupFromChat(chat *Chat) (*v1protocol.Group, error) {
|
|
return v1protocol.NewGroupWithEvents(chat.ID, chat.MembershipUpdates)
|
|
}
|