mv crypto -> internal/crypto

This commit is contained in:
2024-10-10 10:36:23 +02:00
parent 950e4fb30e
commit c2f301a6b1
6 changed files with 6 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ import (
"github.com/spf13/cobra"
"github.com/k4lipso/pentapass/rpc"
"github.com/k4lipso/pentapass/crypto"
"github.com/k4lipso/pentapass/internal/crypto"
. "github.com/k4lipso/pentapass/internal/log"
)

View File

@@ -10,7 +10,7 @@ import (
"github.com/k4lipso/pentapass/storage"
"github.com/k4lipso/pentapass/rpc"
"github.com/k4lipso/pentapass/crypto/age"
"github.com/k4lipso/pentapass/internal/crypto/age"
. "github.com/k4lipso/pentapass/internal/log"
)

View File

@@ -11,8 +11,8 @@ import (
"syscall"
"github.com/k4lipso/pentapass/storage"
"github.com/k4lipso/pentapass/crypto"
"github.com/k4lipso/pentapass/crypto/age"
"github.com/k4lipso/pentapass/internal/crypto"
"github.com/k4lipso/pentapass/internal/crypto/age"
. "github.com/k4lipso/pentapass/internal/log"
)

View File

@@ -34,8 +34,8 @@ import (
routed "github.com/libp2p/go-libp2p/p2p/host/routed"
agelib "filippo.io/age"
password "github.com/k4lipso/pentapass/crypto"
"github.com/k4lipso/pentapass/crypto/age"
password "github.com/k4lipso/pentapass/internal/crypto"
"github.com/k4lipso/pentapass/internal/crypto/age"
. "github.com/k4lipso/pentapass/internal/log"
)