mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-02 16:15:59 +08:00
a2r call option
This commit is contained in:
@@ -11,10 +11,17 @@ import (
|
||||
"google.golang.org/grpc"
|
||||
)
|
||||
|
||||
func List[T any](val *[]T) {
|
||||
if val != nil && *val == nil {
|
||||
*val = []T{}
|
||||
}
|
||||
}
|
||||
|
||||
func Call[A, B, C any](
|
||||
rpc func(client C, ctx context.Context, req *A, options ...grpc.CallOption) (*B, error),
|
||||
client C,
|
||||
c *gin.Context,
|
||||
after ...func(resp *B),
|
||||
) {
|
||||
var req A
|
||||
if err := c.BindJSON(&req); err != nil {
|
||||
@@ -31,5 +38,8 @@ func Call[A, B, C any](
|
||||
apiresp.GinError(c, err) // RPC调用失败
|
||||
return
|
||||
}
|
||||
for _, fn := range after {
|
||||
fn(data)
|
||||
}
|
||||
apiresp.GinSuccess(c, data) // 成功
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user