mirror of
https://github.com/sst/opencode.git
synced 2025-09-01 10:47:26 +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
|
|
}
|