Skip to content

Commit 0837962

Browse files
chore: update module path to lumipallolabs
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent a5180e0 commit 0837962

25 files changed

Lines changed: 38 additions & 38 deletions

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Requires Go 1.21+.
66

77
```bash
8-
git clone https://github.com/samuli/diskdive.git
8+
git clone https://github.com/lumipallolabs/diskdive.git
99
cd diskdive
1010
go build .
1111
go test ./...

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ A fast, terminal-based disk space analyzer with treemap visualization.
1515
## Installation
1616

1717
```bash
18-
go install github.com/samuli/diskdive@latest
18+
go install github.com/lumipallolabs/diskdive@latest
1919
```
2020

2121
Or clone and build:
2222

2323
```bash
24-
git clone https://github.com/samuli/diskdive.git
24+
git clone https://github.com/lumipallolabs/diskdive.git
2525
cd diskdive
2626
go build .
2727
```

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/samuli/diskdive
1+
module github.com/lumipallolabs/diskdive
22

33
go 1.25.5
44

internal/cache/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/samuli/diskdive/internal/model"
13+
"github.com/lumipallolabs/diskdive/internal/model"
1414
)
1515

1616
// Cache handles saving and loading scan results

internal/cache/cache_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"path/filepath"
55
"testing"
66

7-
"github.com/samuli/diskdive/internal/model"
7+
"github.com/lumipallolabs/diskdive/internal/model"
88
)
99

1010
func TestSaveAndLoad(t *testing.T) {

internal/cache/diff.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"path/filepath"
55
"runtime"
66

7-
"github.com/samuli/diskdive/internal/logging"
8-
"github.com/samuli/diskdive/internal/model"
7+
"github.com/lumipallolabs/diskdive/internal/logging"
8+
"github.com/lumipallolabs/diskdive/internal/model"
99
)
1010

1111
// ApplyDiff compares current scan against previous and populates diff fields

internal/cache/diff_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cache
33
import (
44
"testing"
55

6-
"github.com/samuli/diskdive/internal/model"
6+
"github.com/lumipallolabs/diskdive/internal/model"
77
)
88

99
func TestApplyDiff(t *testing.T) {

internal/core/controller.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import (
77
"sync"
88
"time"
99

10-
"github.com/samuli/diskdive/internal/logging"
11-
"github.com/samuli/diskdive/internal/model"
12-
"github.com/samuli/diskdive/internal/scanner"
13-
"github.com/samuli/diskdive/internal/stats"
14-
"github.com/samuli/diskdive/internal/watcher"
10+
"github.com/lumipallolabs/diskdive/internal/logging"
11+
"github.com/lumipallolabs/diskdive/internal/model"
12+
"github.com/lumipallolabs/diskdive/internal/scanner"
13+
"github.com/lumipallolabs/diskdive/internal/stats"
14+
"github.com/lumipallolabs/diskdive/internal/watcher"
1515
)
1616

1717

internal/core/events.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package core
22

3-
import "github.com/samuli/diskdive/internal/model"
3+
import "github.com/lumipallolabs/diskdive/internal/model"
44

55
// Event represents a state change from the controller
66
type Event interface {

internal/core/state.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package core
33
import (
44
"time"
55

6-
"github.com/samuli/diskdive/internal/model"
6+
"github.com/lumipallolabs/diskdive/internal/model"
77
)
88

99
// ScanPhase represents the current phase of scanning

0 commit comments

Comments
 (0)