initial commit; skelet

This commit is contained in:
2026-06-15 00:35:03 +03:00
commit f7c8d8c724
28 changed files with 454 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package main
import (
"fmt"
"os"
tea "charm.land/bubbletea/v2"
"git.scuroneko.dev/scuroneko/sakugiri/internal/tui"
)
func main() {
p := tea.NewProgram(tui.InitialModel())
if _, err := p.Run(); err != nil {
fmt.Printf("Alas, there's been an error: %v", err)
os.Exit(1)
}
}