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

14 lines
223 B
Go
Raw Normal View History

2023-06-29 22:35:31 +08:00
package group
import (
pbGroup "Open_IM/pkg/proto/group"
)
func callbackBeforeCreateGroup(req *pbGroup.CreateGroupReq) (bool, error) {
return true, nil
}
func callbackAfterCreateGroup(req *pbGroup.CreateGroupReq) {
}