Initial upload: TermDiagram v0.1.0
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-29 22:28:08 +00:00
parent a9a3b94610
commit eb9351f84c

11
src/termdiagram/ui/tui.py Normal file
View File

@@ -0,0 +1,11 @@
import os
from typing import Optional
from ..parser import CodeParser
from ..generators import AsciiDiagramGenerator, MermaidDiagramGenerator
class TermDiagramTUI:
def run(self, path: str):
print(f"Interactive mode for {path}")
print("Use arrow keys to navigate, 'q' to quit")
print("This is a placeholder for the interactive TUI implementation.")