Files
infra/wiki-resources/topology/custom.py

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')