summaryrefslogtreecommitdiffhomepage
path: root/main.go
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-05-29 15:22:25 -0500
committeradamdottv <[email protected]>2025-05-29 15:22:25 -0500
commit1c01ee48340c524af9223fac43f21d3a545e4583 (patch)
treef33bde056ef0d65828f15a9199ad0b910f65d74f /main.go
parent005d6e0bde9a42e2bebee7b712b0fe9a7be23499 (diff)
downloadopencode-1c01ee48340c524af9223fac43f21d3a545e4583.tar.gz
opencode-1c01ee48340c524af9223fac43f21d3a545e4583.zip
wip: refactoring tui
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/main.go b/main.go
index c986a1178..d81e6f8f9 100644
--- a/main.go
+++ b/main.go
@@ -2,14 +2,8 @@ package main
import (
"github.com/sst/opencode/cmd"
- "github.com/sst/opencode/internal/logging"
- "github.com/sst/opencode/internal/status"
)
func main() {
- defer logging.RecoverPanic("main", func() {
- status.Error("Application terminated due to unhandled panic")
- })
-
cmd.Execute()
}