home-network/consoles.py
2022-01-05 14:23:20 +01:00

12 lines
405 B
Python
Executable File

#!/usr/bin/env python
# Copyright (c) 2022 Clément Martin <twisla@twis.la. All rights reserved.
# Unauthorized copying of this file, via any medium is strictly prohibited
from diagrams.custom import Custom
def NintendoSwitch(label='Nintendo Switch'):
return Custom(label, './icons/nintendo_switch.png')
def PlayStation4(label='PlayStation 4'):
return Custom(label, './icons/playstation4.png')