mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-21 17:54:23 +01:00
- Replace and expand agent coder prompt for clarity and safety - Add patch tool and TUI dialog support for patch diffs - Sort sidebar modified files by name - Remove Bash/Edit/Sourcegraph/Write tool tests 🤖 Generated with opencode Co-Authored-By: opencode <noreply@opencode.ai>
15 lines
274 B
Go
15 lines
274 B
Go
package main
|
|
|
|
import (
|
|
"github.com/kujtimiihoxha/opencode/cmd"
|
|
"github.com/kujtimiihoxha/opencode/internal/logging"
|
|
)
|
|
|
|
func main() {
|
|
defer logging.RecoverPanic("main", func() {
|
|
logging.ErrorPersist("Application terminated due to unhandled panic")
|
|
})
|
|
|
|
cmd.Execute()
|
|
}
|