Skip to content

Commit

Permalink
module refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmenendez committed Aug 5, 2022
1 parent fe31c30 commit 24c1b76
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/psi_example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"math/big"

"github.com/lucasmenendez/psi/pkg/client"
"github.com/lucasmenendez/gopsi/pkg/client"
)

var err error
Expand Down
4 changes: 2 additions & 2 deletions examples/sra_example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"math/big"

"github.com/lucasmenendez/psi/internal/encoder"
"github.com/lucasmenendez/psi/pkg/sra"
"github.com/lucasmenendez/gopsi/internal/encoder"
"github.com/lucasmenendez/gopsi/pkg/sra"
)

func main() {
Expand Down
8 changes: 4 additions & 4 deletions pkg/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"errors"
"math/big"

"github.com/lucasmenendez/psi/internal/encoder"
"github.com/lucasmenendez/psi/internal/rsa"
"github.com/lucasmenendez/psi/pkg/bloomfilter"
"github.com/lucasmenendez/psi/pkg/sra"
"github.com/lucasmenendez/gopsi/internal/encoder"
"github.com/lucasmenendez/gopsi/internal/rsa"
"github.com/lucasmenendez/gopsi/pkg/bloomfilter"
"github.com/lucasmenendez/gopsi/pkg/sra"
)

// Client struct contains all required parameters to perform a private set
Expand Down

0 comments on commit 24c1b76

Please sign in to comment.