This commit is contained in:
2026-03-25 22:03:39 +01:00
parent a0073b4fb1
commit faf4ca10c9
5603 changed files with 1030866 additions and 79 deletions

View File

@@ -0,0 +1,23 @@
"""Startskript fuer die Audio-Notiz (Standalone)."""
import sys
import os
def main():
"""Einstiegspunkt fuer Launcher/Import (auch wenn frozen)."""
_diktat_dir = os.path.dirname(os.path.abspath(__file__))
if _diktat_dir not in sys.path:
sys.path.insert(0, _diktat_dir)
try:
from apps.diktat.diktat_app import DiktatApp
except ImportError:
from diktat_app import DiktatApp
app = DiktatApp()
app.mainloop()
if __name__ == "__main__":
main()