diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-04-04 15:53:52 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-04-04 15:54:24 +0200 |
commit | b5a6e1108a7209b68b5fc050d8545ab32e9a9dc7 (patch) | |
tree | d1c565cdcb9ed9ea1e4d7e4144d37bc5ba9a7780 /ui/main.go | |
parent | 400a81fdae4ea1ff2263024a7cd0618fc31076ca (diff) |
Signup page
Diffstat (limited to 'ui/main.go')
-rw-r--r-- | ui/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ import ( func main() { views.ClearScreen() - p := tea.NewProgram(views.LoginModel(), tea.WithAltScreen()) + p := tea.NewProgram(views.NewAuthModel(), tea.WithAltScreen()) if _, err := p.Run(); err != nil { log.Fatal(err) } |