diff --git a/db/db.go b/db/db.go index d283084..1d543b8 100644 --- a/db/db.go +++ b/db/db.go @@ -5,8 +5,8 @@ import ( "fmt" "log" + "github.com/ekzyis/hnbot/hn" _ "github.com/mattn/go-sqlite3" - "gitlab.com/ekzyis/hnbot/hn" ) var ( diff --git a/go.mod b/go.mod index 339d6c5..abbc588 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitlab.com/ekzyis/hnbot +module github.com/ekzyis/hnbot go 1.20 diff --git a/main.go b/main.go index 2a3d459..1e68501 100644 --- a/main.go +++ b/main.go @@ -5,9 +5,9 @@ import ( "log" "time" - "gitlab.com/ekzyis/hnbot/db" - "gitlab.com/ekzyis/hnbot/hn" - sn "gitlab.com/ekzyis/hnbot/sn" + "github.com/ekzyis/hnbot/db" + "github.com/ekzyis/hnbot/hn" + sn "github.com/ekzyis/hnbot/sn" ) func SyncHnItemsToDb() { diff --git a/sn/sn.go b/sn/sn.go index a7da590..277b474 100644 --- a/sn/sn.go +++ b/sn/sn.go @@ -7,9 +7,9 @@ import ( "time" "github.com/dustin/go-humanize" + "github.com/ekzyis/hnbot/db" + "github.com/ekzyis/hnbot/hn" sn "github.com/ekzyis/snappy" - "gitlab.com/ekzyis/hnbot/db" - "gitlab.com/ekzyis/hnbot/hn" ) type DupesError = sn.DupesError