2025-03-23 18:19:08 +00:00
|
|
|
package main
|
|
|
|
|
|
2025-03-23 21:25:31 +00:00
|
|
|
import (
|
2025-05-13 15:02:39 +00:00
|
|
|
"github.com/sst/opencode/cmd"
|
|
|
|
|
"github.com/sst/opencode/internal/logging"
|
|
|
|
|
"github.com/sst/opencode/internal/status"
|
2025-03-23 21:25:31 +00:00
|
|
|
)
|
2025-03-23 18:19:08 +00:00
|
|
|
|
|
|
|
|
func main() {
|
2025-04-16 18:06:23 +00:00
|
|
|
defer logging.RecoverPanic("main", func() {
|
2025-05-08 17:03:59 +00:00
|
|
|
status.Error("Application terminated due to unhandled panic")
|
2025-04-16 18:06:23 +00:00
|
|
|
})
|
2025-04-16 22:00:19 +00:00
|
|
|
|
2025-03-23 18:19:08 +00:00
|
|
|
cmd.Execute()
|
|
|
|
|
}
|