diff --git a/oslo/messaging/__init__.py b/oslo/messaging/__init__.py index fb17872ff..83529c5b4 100644 --- a/oslo/messaging/__init__.py +++ b/oslo/messaging/__init__.py @@ -14,6 +14,7 @@ # under the License. from .exceptions import * +from .notify import * from .rpc import * from .serializer import * from .server import * diff --git a/oslo/messaging/notify/__init__.py b/oslo/messaging/notify/__init__.py index b1541fdb7..afce81b0c 100644 --- a/oslo/messaging/notify/__init__.py +++ b/oslo/messaging/notify/__init__.py @@ -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 *