Cybersecurity-Projects/PROJECTS/beginner/steganography-multi-tool/internal/tui/tui.go

18 lines
266 B
Go

/*
©AngelaMos | 2026
tui.go
Program entry that constructs and runs the interactive bubbletea wizard
*/
package tui
import (
tea "github.com/charmbracelet/bubbletea"
)
func Run() error {
_, err := tea.NewProgram(New(), tea.WithAltScreen()).Run()
return err
}