You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
diagrams/diagrams/onprem/__init__.py

17 lines
250 B

"""
OnPrem provides a set of general on-premises services.
"""
from diagrams import Node
class _OnPrem(Node):
_provider = "onprem"
_icon_dir = "resources/onprem"
fontcolor = "#ffffff"
class OnPrem(_OnPrem):
_icon = "onprem.png"