feat: Первый коммит

This commit is contained in:
2021-04-09 00:26:44 +03:00
parent 4375da2c2e
commit ef43c10abb
14 changed files with 377 additions and 73 deletions

14
frontend/todo_tk.py Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python3
import tkinter as tk
class Application(tk.Frame):
def __init__(self, master=None):
super().__init__(master)
if __name__ == "__main__":
app = Application()
app.master.title("ToDo")
app.mainloop()