9 lines
201 B
Python
9 lines
201 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')
|
|
|