Files
query-orchestration/internal/jsonExtractor/service.go
T

10 lines
226 B
Go
Raw Normal View History

2024-12-20 17:54:05 +00:00
package jsonextractor
import "github.com/google/uuid"
func Process(queryId uuid.UUID, queryVersion int32, jsonString string) (string, error) {
// TODO - get full query information
// TODO - process input
return "", nil
}