#!/usr/bin/env python3 from ui.app import App def main() -> None: app = App() app.run() if __name__ == "__main__": main()