Files
notecast/main.py
T
svlqd 7cf4c5259b Major updates
- UI is now on customtkinter
- new environment.yml file
- entry point is now in main.py
- minor improvements in audio_transcription
2025-09-12 17:43:53 +03:00

5 lines
106 B
Python

from ui.ui import TranscriberApp
if __name__ == "__main__":
app = TranscriberApp()
app.mainloop()