fix(viu): correct import path

This commit is contained in:
Benexl
2025-10-26 23:28:23 +03:00
parent 2a36152c38
commit 7b8027a8b3

View File

@@ -8,7 +8,7 @@ if getattr(sys, "frozen", False):
sys.path.insert(0, application_path)
# Import and run the main application
from viu import Cli
from viu_media import Cli
if __name__ == "__main__":
Cli()