update rabbitmq

This commit is contained in:
pixtaded 2025-05-16 14:41:34 +03:00
parent fccf98f1e5
commit d6928ec26b
2 changed files with 3362 additions and 3021 deletions

6379
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -16,11 +16,11 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import amqp, { Connection, Channel } from "amqplib";
import amqp, { ChannelModel, Channel } from "amqplib";
import { Config } from "./Config";
export const RabbitMQ: {
connection: Connection | null;
connection: ChannelModel | null;
channel: Channel | null;
init: () => Promise<void>;
} = {