Skip to content

Commit

Permalink
add ZmqManager to dunder init
Browse files Browse the repository at this point in the history
  • Loading branch information
etseidler committed Jan 3, 2017
1 parent c4141bb commit d6f703f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion socketio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
from .pubsub_manager import PubSubManager
from .kombu_manager import KombuManager
from .redis_manager import RedisManager
from .zmq_manager import ZmqManager
from .server import Server
from .namespace import Namespace

__version__ = '1.6.2'

__all__ = [__version__, Middleware, Server, BaseManager, PubSubManager,
KombuManager, RedisManager, Namespace]
KombuManager, RedisManager, ZmqManager, Namespace]

0 comments on commit d6f703f

Please sign in to comment.