diff --git a/diagrams/onprem/vcs.py b/diagrams/onprem/vcs.py new file mode 100644 index 0000000..6bd2f4e --- /dev/null +++ b/diagrams/onprem/vcs.py @@ -0,0 +1,23 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _OnPrem + + +class _Vcs(_OnPrem): + _type = "vcs" + _icon_dir = "resources/onprem/vcs" + + +class Git(_Vcs): + _icon = "git.png" + + +class Github(_Vcs): + _icon = "github.png" + + +class Gitlab(_Vcs): + _icon = "gitlab.png" + + +# Aliases diff --git a/docs/nodes/onprem.md b/docs/nodes/onprem.md index 8e12f13..279b9c7 100644 --- a/docs/nodes/onprem.md +++ b/docs/nodes/onprem.md @@ -120,3 +120,9 @@ Node classes list of onprem provider. - **diagrams.onprem.analytics.Hive** - **diagrams.onprem.analytics.Spark** - **diagrams.onprem.analytics.Storm** + +## onprem.vcs + +- **diagrams.onprem.vcs.Git** +- **diagrams.onprem.vcs.Github** +- **diagrams.onprem.vcs.Gitlab** diff --git a/resources/onprem/vcs/git.png b/resources/onprem/vcs/git.png new file mode 100644 index 0000000..e4d7180 Binary files /dev/null and b/resources/onprem/vcs/git.png differ diff --git a/resources/onprem/vcs/github.png b/resources/onprem/vcs/github.png new file mode 100644 index 0000000..1916642 Binary files /dev/null and b/resources/onprem/vcs/github.png differ diff --git a/resources/onprem/vcs/gitlab.png b/resources/onprem/vcs/gitlab.png new file mode 100644 index 0000000..89eb25c Binary files /dev/null and b/resources/onprem/vcs/gitlab.png differ