14 lines
223 B
14 lines
223 B
2 years ago
|
package group
|
||
|
|
||
|
import (
|
||
|
pbGroup "Open_IM/pkg/proto/group"
|
||
|
)
|
||
|
|
||
|
func callbackBeforeCreateGroup(req *pbGroup.CreateGroupReq) (bool, error) {
|
||
|
return true, nil
|
||
|
}
|
||
|
|
||
|
func callbackAfterCreateGroup(req *pbGroup.CreateGroupReq) {
|
||
|
|
||
|
}
|