You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ariatosca.apache.org by av...@apache.org on 2017/04/05 10:05:51 UTC

[04/10] incubator-ariatosca git commit: Make importing the commands module import all of its subcommands

Make importing the commands module import all of its subcommands


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/36aef9d5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/36aef9d5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/36aef9d5

Branch: refs/heads/cli-tests
Commit: 36aef9d567b77cd92b6a68759de365ded01624fc
Parents: 73ae6a6
Author: Avia Efrat <av...@gigaspaces.com>
Authored: Wed Apr 5 11:32:34 2017 +0300
Committer: Avia Efrat <av...@gigaspaces.com>
Committed: Wed Apr 5 11:32:34 2017 +0300

----------------------------------------------------------------------
 aria/cli/commands/__init__.py | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/36aef9d5/aria/cli/commands/__init__.py
----------------------------------------------------------------------
diff --git a/aria/cli/commands/__init__.py b/aria/cli/commands/__init__.py
index ae1e83e..7777791 100644
--- a/aria/cli/commands/__init__.py
+++ b/aria/cli/commands/__init__.py
@@ -12,3 +12,14 @@
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
+
+from . import (
+    executions,
+    logs,
+    node_templates,
+    nodes,
+    plugins,
+    service_templates,
+    services,
+    workflows
+)