module: change path to github.com/beeper/groupme

Signed-off-by: Sumner Evans <sumner@beeper.com>
This commit is contained in:
Sumner Evans
2022-10-21 09:48:03 -05:00
parent 07d2cae5b2
commit 4d37d06c58
23 changed files with 41 additions and 42 deletions

View File

@ -40,7 +40,7 @@ func NewSQLCryptoStore(db *Database, userID id.UserID, ghostIDFormat string) *SQ
raw, _ := db.DB.DB()
return &SQLCryptoStore{
SQLCryptoStore: crypto.NewSQLCryptoStore(raw, db.dialect, "", "",
[]byte("github.com/karmanyaahm/matrix-groupme-go"),
[]byte("github.com/beeper/groupme"),
&cryptoLogger{db.log.Sub("CryptoStore")}),
UserID: userID,
GhostIDFormat: ghostIDFormat,

View File

@ -30,7 +30,7 @@ import (
"gorm.io/gorm"
"gorm.io/gorm/schema"
"github.com/karmanyaahm/matrix-groupme-go/database/upgrades"
"github.com/beeper/groupme/database/upgrades"
)
type Database struct {

View File

@ -18,10 +18,10 @@ package database
import (
log "maunium.net/go/maulogger/v2"
"github.com/karmanyaahm/matrix-groupme-go/groupmeExt"
"github.com/karmanyaahm/matrix-groupme-go/types"
"maunium.net/go/mautrix/id"
"github.com/beeper/groupme/groupmeExt"
"github.com/beeper/groupme/types"
)
type MessageQuery struct {

View File

@ -24,7 +24,7 @@ import (
log "maunium.net/go/maulogger/v2"
"maunium.net/go/mautrix/id"
"github.com/karmanyaahm/matrix-groupme-go/types"
"github.com/beeper/groupme/types"
)
// JID is the puppet or the group

View File

@ -21,7 +21,7 @@ import (
"maunium.net/go/mautrix/id"
"github.com/karmanyaahm/matrix-groupme-go/types"
"github.com/beeper/groupme/types"
)
type PuppetQuery struct {

View File

@ -1,9 +1,10 @@
package database
import (
"github.com/karmanyaahm/matrix-groupme-go/types"
log "maunium.net/go/maulogger/v2"
"maunium.net/go/mautrix/id"
"github.com/beeper/groupme/types"
)
type ReactionQuery struct {

View File

@ -22,7 +22,7 @@ import (
log "maunium.net/go/maulogger/v2"
"github.com/karmanyaahm/matrix-groupme-go/types"
"github.com/beeper/groupme/types"
"maunium.net/go/mautrix/id"
)