19 lines
402 B
Python
19 lines
402 B
Python
"""@package docstring
|
|
This module configures PCs but relies heavily on external modules that are included with the package.
|
|
"""
|
|
|
|
|
|
class ConfigCreator:
|
|
def __init__(self):
|
|
print("""
|
|
|
|
|
|
|
|
Welcome to the PC-Configurator!
|
|
--------------------------------
|
|
|
|
We still need a couple of informations so we can make sure you get the best configuration possible!
|
|
|
|
No more questions? Let's start!
|
|
""")
|