diff options
| author | Fuwn <[email protected]> | 2026-01-30 13:03:11 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-30 13:03:11 +0000 |
| commit | 52e13143420cec1dd54d6bae7e763e7186f97634 (patch) | |
| tree | d062279807e06d03d00d0c6d69e11b30ddb5be54 /main.go | |
| parent | fix(claude:session): Handle empty session index (diff) | |
| download | faustus-52e13143420cec1dd54d6bae7e763e7186f97634.tar.xz faustus-52e13143420cec1dd54d6bae7e763e7186f97634.zip | |
format: Apply Iku formatting
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,15 +2,15 @@ package main import ( "fmt" - "os" - "github.com/Fuwn/faustus/internal/app" "github.com/Fuwn/faustus/internal/claude" tea "github.com/charmbracelet/bubbletea" + "os" ) func main() { sessions, err := claude.LoadAllSessions() + if err != nil { fmt.Fprintf(os.Stderr, "Error loading sessions: %v\n", err) os.Exit(1) |