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