Skip to content
Snippets Groups Projects
Commit a18c4934 authored by thijsheijden's avatar thijsheijden
Browse files

Moved entity package up one layer so it can be shared

parent 75fc1e21
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ import (
"errors"
"fmt"
"git.science.uu.nl/datastrophe/query-conversion/aql/entity"
"git.science.uu.nl/datastrophe/query-conversion/entity"
)
/*
......
......@@ -4,7 +4,7 @@ import (
"encoding/json"
"testing"
"git.science.uu.nl/datastrophe/query-conversion/aql/entity"
"git.science.uu.nl/datastrophe/query-conversion/entity"
)
func BenchmarkConvertEmptyQuery(b *testing.B) {
......
......@@ -6,7 +6,7 @@ import (
"strings"
"testing"
"git.science.uu.nl/datastrophe/query-conversion/aql/entity"
"git.science.uu.nl/datastrophe/query-conversion/entity"
"github.com/stretchr/testify/assert"
)
......
......@@ -3,7 +3,7 @@ package aql
import (
"fmt"
"git.science.uu.nl/datastrophe/query-conversion/aql/entity"
"git.science.uu.nl/datastrophe/query-conversion/entity"
)
/* createConstraintStatements generates the appropriate amount of constraint lines calling createConstraingBoolExpression
......
File moved
package query
import "git.science.uu.nl/datastrophe/query-conversion/aql/entity"
import "git.science.uu.nl/datastrophe/query-conversion/entity"
// A Converter converts an incoming message in our JSON format to a format like AQL or Cypher
type Converter interface {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment