mirror of
https://github.com/sst/opencode.git
synced 2025-08-27 00:14:12 +00:00
8 lines
238 B
Go
8 lines
238 B
Go
package completions
|
|
|
|
// CompletionProvider defines the interface for completion data providers
|
|
type CompletionProvider interface {
|
|
GetId() string
|
|
GetChildEntries(query string) ([]CompletionSuggestion, error)
|
|
GetEmptyMessage() string
|
|
}
|