Files
open-im-server/pkg/common/tools/op.go
T

14 lines
232 B
Go
Raw Normal View History

2023-01-12 17:52:14 +08:00
package tools
import "context"
func OperationID(ctx context.Context) string {
s, _ := ctx.Value("operationID").(string)
return s
}
func OpUserID(ctx context.Context) string {
s, _ := ctx.Value("opUserID").(string)
return s
}