feat: Initial project structure with TUI, SSH, SIP parser, and capture modules

This commit is contained in:
Jose Luis Montañes Ojados
2026-01-19 13:46:27 +01:00
commit 3e5742d353
9 changed files with 932 additions and 0 deletions

18
cmd/inspector/main.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"fmt"
"os"
"telephony-inspector/internal/tui"
tea "github.com/charmbracelet/bubbletea"
)
func main() {
p := tea.NewProgram(tui.NewModel(), tea.WithAltScreen())
if _, err := p.Run(); err != nil {
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
os.Exit(1)
}
}