Files
watchy/watchy-image-editor/main.py
T
2024-03-15 17:39:10 +01:00

10 lines
128 B
Python
Executable File

import tkinter as tk
import os.path
from app import App
if __name__ == "__main__":
app = App(tk.Tk())
app.mainloop()