Skip to content

Commit d5304e6

Browse files
committed
refactor: use proper go module name
1 parent cf639b5 commit d5304e6

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

dashboard/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module dashboard
1+
module github.com/steveiliop56/tinyauth-analytics/dashboard
22

33
go 1.24.3

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module tinyauth-analytics
1+
module github.com/steveiliop56/tinyauth-analytics
22

33
go 1.24.3
44

instances_handler.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import (
66
"log/slog"
77
"net/http"
88
"time"
9-
"tinyauth-analytics/database/queries"
9+
10+
"github.com/steveiliop56/tinyauth-analytics/database/queries"
1011

1112
"github.com/go-chi/render"
1213
)

main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import (
88
"net/http"
99
"os"
1010
"time"
11-
"tinyauth-analytics/database/queries"
11+
12+
"github.com/steveiliop56/tinyauth-analytics/database/queries"
1213

1314
"github.com/go-chi/chi/v5"
1415
"github.com/go-chi/chi/v5/middleware"

0 commit comments

Comments
 (0)