From 0853a9fce6436cd3f4b9cec6f51e6f10046fc930 Mon Sep 17 00:00:00 2001 From: slice Date: Tue, 19 Jun 2018 17:55:00 -0700 Subject: [PATCH] export websocket_handler in module --- litecord/gateway/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litecord/gateway/__init__.py b/litecord/gateway/__init__.py index 116175c..4835a19 100644 --- a/litecord/gateway/__init__.py +++ b/litecord/gateway/__init__.py @@ -1 +1,3 @@ +__all__ = ['websocket_handler'] + from .gateway import websocket_handler