Skip to content

Commit e2175b9

Browse files
committed
fix: Update module path to github.com/sumant1122/Perfmon and bump version to 0.2.0.
1 parent a56ff3b commit e2175b9

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module perfmon
1+
module github.com/sumant1122/Perfmon
22

33
go 1.22
44

internal/ui/model.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"strings"
99
"time"
1010

11-
"perfmon/internal/config"
12-
"perfmon/internal/monitor"
13-
"perfmon/internal/theme"
11+
"github.com/sumant1122/Perfmon/internal/config"
12+
"github.com/sumant1122/Perfmon/internal/monitor"
13+
"github.com/sumant1122/Perfmon/internal/theme"
1414

1515
"github.com/charmbracelet/bubbles/viewport"
1616
tea "github.com/charmbracelet/bubbletea"

internal/ui/model_test.go

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

6-
"perfmon/internal/config"
6+
"github.com/sumant1122/Perfmon/internal/config"
77

88
tea "github.com/charmbracelet/bubbletea"
99
)

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import (
55
"fmt"
66
"os"
77

8-
"perfmon/internal/ui"
8+
"github.com/sumant1122/Perfmon/internal/ui"
99

1010
tea "github.com/charmbracelet/bubbletea"
1111
)
1212

13-
var version = "0.1.0"
13+
const version = "0.2.0"
1414

1515
func main() {
1616
if printVersion() {

0 commit comments

Comments
 (0)