diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-30 10:45:30 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-30 10:45:30 +0300 |
| commit | adecf1fd2e55a0605d03f36952846f6336506d37 (patch) | |
| tree | c02af76c7ea906f22c742cf4be83e488e5fcf050 /internal/auth | |
| parent | 0d7063e5c91efeb219a4be5b93525b0837c8d3be (diff) | |
Rename module to codeberg.org/snonux/play (task aa)
- Update go.mod module path
- Replace all internal imports from github.com/paul/kiss-media-player to codeberg.org/snonux/play
- Run go mod tidy and gofmt -w .
Diffstat (limited to 'internal/auth')
| -rw-r--r-- | internal/auth/auth_test.go | 6 | ||||
| -rw-r--r-- | internal/auth/session.go | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/internal/auth/auth_test.go b/internal/auth/auth_test.go index 14b92ed..ce1ab8f 100644 --- a/internal/auth/auth_test.go +++ b/internal/auth/auth_test.go @@ -6,9 +6,9 @@ import ( "testing" "time" - "github.com/paul/kiss-media-player/internal/clock" - "github.com/paul/kiss-media-player/internal/model" - "github.com/paul/kiss-media-player/internal/repository" + "codeberg.org/snonux/play/internal/clock" + "codeberg.org/snonux/play/internal/model" + "codeberg.org/snonux/play/internal/repository" ) func TestBCryptHasher_HashAndCompare(t *testing.T) { diff --git a/internal/auth/session.go b/internal/auth/session.go index 2b5be2a..2b9cea7 100644 --- a/internal/auth/session.go +++ b/internal/auth/session.go @@ -7,9 +7,9 @@ import ( "fmt" "time" - "github.com/paul/kiss-media-player/internal/clock" - "github.com/paul/kiss-media-player/internal/model" - "github.com/paul/kiss-media-player/internal/repository" + "codeberg.org/snonux/play/internal/clock" + "codeberg.org/snonux/play/internal/model" + "codeberg.org/snonux/play/internal/repository" ) // SessionManager handles session lifecycle. |
