feat: first attempt at a gui for managing sessions

This commit is contained in:
Joe Fleming
2026-03-07 11:52:39 -07:00
commit ad7030ae38
9 changed files with 1046 additions and 0 deletions

8
main.py Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python3
"""Session Mover TUI - Move OpenCode sessions between projects without SQL."""
from app import SessionMoverApp
if __name__ == "__main__":
app = SessionMoverApp()
app.run()