mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-13 00:07:21 +00:00
14 lines
256 B
Python
14 lines
256 B
Python
""" play music"""
|
|
|
|
def musik_player():
|
|
""" music player"""
|
|
print("Ich könnte Musik abspielen")
|
|
|
|
|
|
def metadaten_picker():
|
|
""" i love metadata"""
|
|
print("ich mag Metadaten")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print("Use main.py to use program") |