mirror of
https://github.com/sst/opencode.git
synced 2025-08-29 09:24:06 +00:00
feat(tui): custom commands
This commit is contained in:
parent
2407b33b1b
commit
fdfb54aea5
21 changed files with 526 additions and 26 deletions
|
@ -21,6 +21,7 @@ type Client struct {
|
|||
Find *FindService
|
||||
File *FileService
|
||||
Config *ConfigService
|
||||
Command *CommandService
|
||||
Session *SessionService
|
||||
Tui *TuiService
|
||||
}
|
||||
|
@ -49,6 +50,7 @@ func NewClient(opts ...option.RequestOption) (r *Client) {
|
|||
r.Find = NewFindService(opts...)
|
||||
r.File = NewFileService(opts...)
|
||||
r.Config = NewConfigService(opts...)
|
||||
r.Command = NewCommandService(opts...)
|
||||
r.Session = NewSessionService(opts...)
|
||||
r.Tui = NewTuiService(opts...)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue