From 28e7b17946143df6792f92cccb67318011772387 Mon Sep 17 00:00:00 2001 From: S M <> Date: Mon, 17 Feb 2020 13:38:45 -0500 Subject: [PATCH] Add missing module script for OCI provider --- diagrams/oci/__init__.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 diagrams/oci/__init__.py diff --git a/diagrams/oci/__init__.py b/diagrams/oci/__init__.py new file mode 100644 index 00000000..c1fc149f --- /dev/null +++ b/diagrams/oci/__init__.py @@ -0,0 +1,12 @@ +""" +OCI provides a set of services for Oracle Cloud provider. +""" + +from diagrams import Node + + +class _OCI(Node): + _provider = "oci" + _icon_dir = "resources/oci" + + fontcolor = "#2d3436" \ No newline at end of file