Files
query-orchestration/internal/query/test.go
T

22 lines
322 B
Go
Raw Normal View History

2025-01-03 13:41:07 +00:00
package query
import (
"context"
2025-01-03 14:21:14 +00:00
"github.com/google/uuid"
2025-01-03 13:41:07 +00:00
)
2025-01-03 14:21:14 +00:00
type Test struct {
QueryID uuid.UUID
DocumentID uuid.UUID
QueryVersion int32
}
2025-01-03 13:41:07 +00:00
func (s *Service) Test(ctx context.Context, filters Test) (string, error) {
// TODO
2025-01-03 14:08:04 +00:00
// Sync doc - documentID
// Run test - queryID, queryVersion
2025-01-03 13:41:07 +00:00
return "", nil
}