This commit is contained in:
Robin
2025-10-04 20:08:48 +02:00
commit f05dda95c3
17 changed files with 330 additions and 0 deletions

15
client/main.py Normal file
View File

@@ -0,0 +1,15 @@
import customtkinter
class App(customtkinter.CTk):
def __init__(self):
super().__init__()
self.title("Pycord Client")
self.geometry("800x600")
self.label = customtkinter.CTkLabel(self, text="Willkommen bei Pycord!", font=("Roboto", 24))
self.label.pack(pady=20)
if __name__ == "__main__":
app = App()
app.mainloop()