diff --git a/chi/__init__.py b/chi/__init__.py index e69de29..765ef96 100644 --- a/chi/__init__.py +++ b/chi/__init__.py @@ -0,0 +1,33 @@ +from .clients import ( + connection, + blazar, + cinder, + glance, + ironic, + keystone, + manila, + neutron, + nova, + zun, +) +from .context import reset, set, get, params, session, use_site + + +__all__ = [ + "get", + "params", + "reset", + "session", + "set", + "use_site", + "connection", + "blazar", + "cinder", + "glance", + "ironic", + "keystone", + "manila", + "neutron", + "nova", + "zun", +]