Rename module to groupme

This commit is contained in:
Karmanyaah Malhotra
2021-03-02 19:46:53 -05:00
parent c16f42ed70
commit 7069e7d358
20 changed files with 49 additions and 47 deletions

View File

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

View File

@ -24,7 +24,7 @@ import (
_ "github.com/mattn/go-sqlite3"
log "maunium.net/go/maulogger/v2"
"maunium.net/go/mautrix-whatsapp/database/upgrades"
"github.com/karmanyaahm/matrix-groupme-go/database/upgrades"
"gorm.io/driver/postgres"
"gorm.io/driver/sqlite"

View File

@ -19,8 +19,8 @@ package database
import (
log "maunium.net/go/maulogger/v2"
"maunium.net/go/mautrix-whatsapp/groupmeExt"
"maunium.net/go/mautrix-whatsapp/types"
"github.com/karmanyaahm/matrix-groupme-go/groupmeExt"
"github.com/karmanyaahm/matrix-groupme-go/types"
"maunium.net/go/mautrix/id"
)

View File

@ -21,7 +21,7 @@ import (
log "maunium.net/go/maulogger/v2"
"maunium.net/go/mautrix/id"
"maunium.net/go/mautrix-whatsapp/types"
"github.com/karmanyaahm/matrix-groupme-go/types"
)
type PortalKey struct {

View File

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

View File

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