-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8ba6a8
commit eddeb38
Showing
12 changed files
with
76 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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** |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters