update module import path for repository transfer

This commit is contained in:
Samuel Lorch 2022-02-22 16:38:42 +01:00
parent 47ec059232
commit 69221b3a24
12 changed files with 20 additions and 20 deletions

View file

@ -4,7 +4,7 @@ import (
"context"
"fmt"
"github.com/speatzle/go-passbolt/api"
"github.com/passbolt/go-passbolt/api"
)
// CreateFolder Creates a new Folder

View file

@ -4,7 +4,7 @@ import (
"context"
"fmt"
"github.com/speatzle/go-passbolt/api"
"github.com/passbolt/go-passbolt/api"
)
// GroupMembershipOperation creates/modifies/deletes a group membership

View file

@ -8,7 +8,7 @@ import (
"net/http"
"time"
"github.com/speatzle/go-passbolt/api"
"github.com/passbolt/go-passbolt/api"
)
// AddMFACallbackTOTP adds a MFA callback to the client that generates OTP Codes on demand using a Token with configurable retries and delay

View file

@ -5,7 +5,7 @@ import (
"encoding/json"
"fmt"
"github.com/speatzle/go-passbolt/api"
"github.com/passbolt/go-passbolt/api"
)
// CreateResource Creates a Resource where the Password and Description are Encrypted and Returns the Resources ID

View file

@ -5,7 +5,7 @@ import (
"fmt"
"strings"
"github.com/speatzle/go-passbolt/api"
"github.com/passbolt/go-passbolt/api"
"github.com/ProtonMail/gopenpgp/v2/crypto"
"github.com/ProtonMail/gopenpgp/v2/helper"

View file

@ -8,7 +8,7 @@ import (
"os"
"testing"
"github.com/speatzle/go-passbolt/api"
"github.com/passbolt/go-passbolt/api"
)
var client *api.Client

View file

@ -4,7 +4,7 @@ import (
"context"
"fmt"
"github.com/speatzle/go-passbolt/api"
"github.com/passbolt/go-passbolt/api"
)
// ShareOperation defines how Resources are to be Shared With Users/Groups

View file

@ -4,7 +4,7 @@ import (
"context"
"fmt"
"github.com/speatzle/go-passbolt/api"
"github.com/passbolt/go-passbolt/api"
)
// CreateUser Creates a new User

View file

@ -3,7 +3,7 @@ package helper
import (
"fmt"
"github.com/speatzle/go-passbolt/api"
"github.com/passbolt/go-passbolt/api"
)
func getPublicKeyByUserID(userID string, Users []api.User) (string, error) {