10 lines
226 B
Go
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
|
|
}
|