feat(channel): add WeChat (weixin) adapter with QR code (#278)

* feat(channel): add WeChat (weixin) adapter with QR code

* fix(channel): fix weixin block streaming

* chore(channel): update weixin logo
This commit is contained in:
晨苒
2026-03-22 23:28:57 +08:00
committed by GitHub
parent 897cc32194
commit e2e3b69acf
31 changed files with 3712 additions and 49 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ func (s *Service) SearchAccounts(ctx context.Context, query string, limit int) (
}
rows, err := s.queries.SearchAccounts(ctx, sqlc.SearchAccountsParams{
Query: strings.TrimSpace(query),
LimitCount: int32(limit),
LimitCount: int32(limit), //nolint:gosec // limit is capped above
})
if err != nil {
return nil, err