Files
open-im-server/internal/rpc/group/callback.go
T

14 lines
223 B
Go
Raw Normal View History

2022-02-28 17:57:03 +08:00
package group
import (
pbGroup "Open_IM/pkg/proto/group"
)
func callbackBeforeCreateGroup(req *pbGroup.CreateGroupReq) (bool, error) {
return true, nil
}
2022-04-08 15:40:07 +08:00
func callbackAfterCreateGroup(req *pbGroup.CreateGroupReq) {
}