11 lines
277 B
Python
11 lines
277 B
Python
from diagrams.custom import Custom
|
|
|
|
def Gitea(name: str) -> Custom:
|
|
return Custom(name, './images/gitea.png')
|
|
|
|
def StaticSite(name: str) -> Custom:
|
|
return Custom(name, './images/website.png')
|
|
|
|
def Internet() -> Custom:
|
|
return Custom('Internet', './images/www.png')
|