Skip to content

Commit

Permalink
Changed package name
Browse files Browse the repository at this point in the history
  • Loading branch information
swicherwich committed Sep 25, 2023
1 parent 2506133 commit 9469d5d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions cmd/pwdmg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"errors"
"fmt"
"github.com/atotto/clipboard"
"github.com/swicherwich/pwdmg/internal/app/command/get"
"github.com/swicherwich/pwdmg/internal/app/command/save"
"github.com/urfave/cli/v2"
"golang.org/x/crypto/ssh/terminal"
"os"
"pwd-manager/internal/app/command/get"
"pwd-manager/internal/app/command/save"
"syscall"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module pwd-manager
module github.com/swicherwich/pwdmg

go 1.20

Expand Down
6 changes: 3 additions & 3 deletions internal/app/command/get/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package get
import (
"errors"
"fmt"
"pwd-manager/internal/app/domain"
"pwd-manager/internal/pkg/fsutil"
"pwd-manager/internal/pkg/secutil"
"github.com/swicherwich/pwdmg/internal/app/domain"
"github.com/swicherwich/pwdmg/internal/pkg/fsutil"
"github.com/swicherwich/pwdmg/internal/pkg/secutil"
)

func PwdByLogin(dName, acc string) (string, error) {
Expand Down
6 changes: 3 additions & 3 deletions internal/app/command/save/save.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package save

import (
"fmt"
"pwd-manager/internal/app/domain"
"pwd-manager/internal/pkg/fsutil"
"pwd-manager/internal/pkg/secutil"
"github.com/swicherwich/pwdmg/internal/app/domain"
"github.com/swicherwich/pwdmg/internal/pkg/fsutil"
"github.com/swicherwich/pwdmg/internal/pkg/secutil"
"time"
)

Expand Down

0 comments on commit 9469d5d

Please sign in to comment.