using System; using System.Collections.Generic; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace Core.RabbitMQBus.EventBus { public interface IRabbitMqSubscriber { void Subscriber(string queueName); } }