mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-23 02:34:21 +01:00
9 lines
238 B
Go
9 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
|
|
}
|