architecture,distribution,subsystem
This commit is contained in:
parent
9cd6155f8c
commit
f849bca87c
3 changed files with 48 additions and 0 deletions
16
subsystem.py
Normal file
16
subsystem.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue