package ctxdata import "context" func GetUID(ctx context.Context) string { if u, ok := ctx.Value(Identify).(string); ok { return u } return "" }