mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
14 lines
223 B
Go
14 lines
223 B
Go
package group
|
|
|
|
import (
|
|
pbGroup "Open_IM/pkg/proto/group"
|
|
)
|
|
|
|
func callbackBeforeCreateGroup(req *pbGroup.CreateGroupReq) (bool, error) {
|
|
return true, nil
|
|
}
|
|
|
|
func callbackAfterCreateGroup(req *pbGroup.CreateGroupReq) {
|
|
|
|
}
|