summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-30 10:45:30 +0300
committerPaul Buetow <paul@buetow.org>2026-04-30 10:45:30 +0300
commitadecf1fd2e55a0605d03f36952846f6336506d37 (patch)
treec02af76c7ea906f22c742cf4be83e488e5fcf050 /cmd
parent0d7063e5c91efeb219a4be5b93525b0837c8d3be (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 'cmd')
-rw-r--r--cmd/mediaplayer/main.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/cmd/mediaplayer/main.go b/cmd/mediaplayer/main.go
index d064274..fcc83e7 100644
--- a/cmd/mediaplayer/main.go
+++ b/cmd/mediaplayer/main.go
@@ -11,12 +11,12 @@ import (
"syscall"
"time"
- "github.com/paul/kiss-media-player/internal"
- "github.com/paul/kiss-media-player/internal/api"
- "github.com/paul/kiss-media-player/internal/auth"
- "github.com/paul/kiss-media-player/internal/clock"
- "github.com/paul/kiss-media-player/internal/repository"
- "github.com/paul/kiss-media-player/internal/service"
+ "codeberg.org/snonux/play/internal"
+ "codeberg.org/snonux/play/internal/api"
+ "codeberg.org/snonux/play/internal/auth"
+ "codeberg.org/snonux/play/internal/clock"
+ "codeberg.org/snonux/play/internal/repository"
+ "codeberg.org/snonux/play/internal/service"
)
func main() {