diff options
author | 2018-09-04 20:24:35 +0000 | |
---|---|---|
committer | 2018-09-04 20:47:03 +0000 | |
commit | 594b5e1c919089c110e6aa9b9d1c00b96a9e96f9 (patch) | |
tree | aeb353f21da3ee3982e5a0d1d1842b13bb490c3c /components/core/load/blueprints/baseconfiguration/Scripts | |
parent | 9abed7f23417e24039d463f84156c1d9fef672f7 (diff) |
Controller Blueprints Microservice
Refactor controller blueprint core and resource dictionary modules to components module.
Change-Id: If5ba5e35e9c95bc19bc78fb10bd62d6551ba7aca
Issue-ID: CCSDK-514
Signed-off-by: Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
Diffstat (limited to 'components/core/load/blueprints/baseconfiguration/Scripts')
-rw-r--r-- | components/core/load/blueprints/baseconfiguration/Scripts/SamplePythonComponentNode.py | 8 | ||||
-rw-r--r-- | components/core/load/blueprints/baseconfiguration/Scripts/__init__.py | 0 |
2 files changed, 8 insertions, 0 deletions
diff --git a/components/core/load/blueprints/baseconfiguration/Scripts/SamplePythonComponentNode.py b/components/core/load/blueprints/baseconfiguration/Scripts/SamplePythonComponentNode.py new file mode 100644 index 00000000..eb198c79 --- /dev/null +++ b/components/core/load/blueprints/baseconfiguration/Scripts/SamplePythonComponentNode.py @@ -0,0 +1,8 @@ +from com.brvith.orchestrator.core.interfaces import ComponentNode
+
+class SamplePythonComponentNode(ComponentNode):
+ def prepare(self, context, componentContext):
+ return None
+
+ def prepare(self, context, componentContext):
+ return None
\ No newline at end of file diff --git a/components/core/load/blueprints/baseconfiguration/Scripts/__init__.py b/components/core/load/blueprints/baseconfiguration/Scripts/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/components/core/load/blueprints/baseconfiguration/Scripts/__init__.py |