Files
query-orchestration/internal/jsonExtractor/service.go
T
2024-12-20 17:54:05 +00:00

10 lines
226 B
Go

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
}