architecture,distribution,subsystem

This commit is contained in:
Marc Beninca 2021-10-10 15:22:02 +02:00 committed by Marc Beninca
parent 9cd6155f8c
commit f849bca87c
3 changed files with 48 additions and 0 deletions

16
subsystem.py Normal file
View file

@ -0,0 +1,16 @@
import os
MAIN = 'msys'
class SubSystem:
def __init__(self, architecture):
self.architecture = architecture
self.name = name
def __str__(self):
lines = [
f'Architecture: {self.architecture.name}',
f' Name: {self.name}',
]
return os.linesep.join(lines)