create main entry point for the application

This commit is contained in:
Sudo-Ivan
2025-05-28 23:44:41 -05:00
parent 990b932d98
commit 75f0972646

5
main.py Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env python3
from ren_browser.app import run
if __name__ == "__main__":
run()