Make Notifier public at top-level

This commit is contained in:
Mark McLoughlin 2013-06-24 07:12:16 +01:00
parent b5e43afc37
commit eb94be8834
2 changed files with 5 additions and 0 deletions

View File

@ -14,6 +14,7 @@
# under the License.
from .exceptions import *
from .notify import *
from .rpc import *
from .serializer import *
from .server import *

View File

@ -12,3 +12,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
__all__ = ['Notifier']
from .notifier import *