Files
server-manager/main.py
chrome-storm-c442 6179ded862 Initial commit: ServerManager GUI application
CustomTkinter desktop app for managing remote servers.
Features: SSH terminal, SFTP file transfer, key management,
background status monitoring, server CRUD with dark theme.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 07:49:13 -05:00

22 lines
321 B
Python

#!/usr/bin/env python3
"""
ServerManager — GUI application for managing remote servers.
"""
import sys
import os
# Add project root to path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from gui.app import App
def main():
app = App()
app.mainloop()
if __name__ == "__main__":
main()