14 lines
357 B
Go
14 lines
357 B
Go
|
package service
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type DataConnector interface {
|
||
|
Connected(ctx context.Context) bool
|
||
|
Query(ctx context.Context, terms []string) ([]string, error)
|
||
|
Tags(ctx context.Context) []string
|
||
|
AddTag(ctx context.Context, TagName string, Resource string) error
|
||
|
ResourceHasTag(ctx context.Context, Resource string, TagName string) bool
|
||
|
}
|