TheMathemagicians/sevenkeys/cmd/storagemgr/main.go

18 lines
223 B
Go
Raw Normal View History

2024-05-24 17:37:12 +00:00
package main
2024-05-27 11:15:42 +00:00
import (
"log"
"sevenkeys/ui"
tea "github.com/charmbracelet/bubbletea"
)
2024-05-24 17:37:12 +00:00
func main() {
2024-05-27 11:15:42 +00:00
var model ui.StoragemgrModel
p := tea.NewProgram(model)
if _, err := p.Run(); err != nil {
log.Fatal(err)
}
2024-05-24 17:37:12 +00:00
}