mirror of https://github.com/mingrammer/diagrams
parent
f8ba6a8659
commit
eddeb38352
@ -0,0 +1,12 @@
|
|||||||
|
"""
|
||||||
|
Saas provides a set of general saas services.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from diagrams import Node
|
||||||
|
|
||||||
|
|
||||||
|
class _Saas(Node):
|
||||||
|
_provider = "saas"
|
||||||
|
_icon_dir = "resources/saas"
|
||||||
|
|
||||||
|
fontcolor = "#ffffff"
|
@ -0,0 +1,19 @@
|
|||||||
|
# This module is automatically generated by autogen.sh. DO NOT EDIT.
|
||||||
|
|
||||||
|
from . import _Saas
|
||||||
|
|
||||||
|
|
||||||
|
class _Chat(_Saas):
|
||||||
|
_type = "chat"
|
||||||
|
_icon_dir = "resources/saas/chat"
|
||||||
|
|
||||||
|
|
||||||
|
class Slack(_Chat):
|
||||||
|
_icon = "slack.png"
|
||||||
|
|
||||||
|
|
||||||
|
class Telegram(_Chat):
|
||||||
|
_icon = "telegram.png"
|
||||||
|
|
||||||
|
|
||||||
|
# Aliases
|
@ -0,0 +1,19 @@
|
|||||||
|
# This module is automatically generated by autogen.sh. DO NOT EDIT.
|
||||||
|
|
||||||
|
from . import _Saas
|
||||||
|
|
||||||
|
|
||||||
|
class _Social(_Saas):
|
||||||
|
_type = "social"
|
||||||
|
_icon_dir = "resources/saas/social"
|
||||||
|
|
||||||
|
|
||||||
|
class Facebook(_Social):
|
||||||
|
_icon = "facebook.png"
|
||||||
|
|
||||||
|
|
||||||
|
class Twitter(_Social):
|
||||||
|
_icon = "twitter.png"
|
||||||
|
|
||||||
|
|
||||||
|
# Aliases
|
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
id: saas
|
||||||
|
title: Saas
|
||||||
|
---
|
||||||
|
|
||||||
|
Node classes list of saas provider.
|
||||||
|
|
||||||
|
## saas.chat
|
||||||
|
|
||||||
|
- **diagrams.saas.chat.Slack**
|
||||||
|
- **diagrams.saas.chat.Telegram**
|
||||||
|
|
||||||
|
## saas.social
|
||||||
|
|
||||||
|
- **diagrams.saas.social.Facebook**
|
||||||
|
- **diagrams.saas.social.Twitter**
|
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 9.1 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 10 KiB |
Loading…
Reference in new issue