rename to github.com/ekzyis/hnbot

This commit is contained in:
ekzyis 2025-02-03 22:49:27 +01:00
parent 2cfb0eaa31
commit fb9c1d9fca
4 changed files with 7 additions and 7 deletions

View File

@ -5,8 +5,8 @@ import (
"fmt"
"log"
"github.com/ekzyis/hnbot/hn"
_ "github.com/mattn/go-sqlite3"
"gitlab.com/ekzyis/hnbot/hn"
)
var (

2
go.mod
View File

@ -1,4 +1,4 @@
module gitlab.com/ekzyis/hnbot
module github.com/ekzyis/hnbot
go 1.20

View File

@ -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() {

View File

@ -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