__init__.py 223 Bytes
Newer Older
金凯强's avatar
金凯强 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
# encoding:utf-8

# 定义交换机类型的枚举值
class ExchangeType():

    DEFAULT = 'default'
    DIRECT = "direct"
    FANOUT = "fanout"
    TOPIC = 'topic'


from .queue import Queue
from .rabbitMQ import RabbitMQ