channels: handle messages Matrix <-> TG

Signed-off-by: Sumner Evans <sumner.evans@automattic.com>
This commit is contained in:
Sumner Evans
2024-07-11 14:00:02 -06:00
parent 62f77686c4
commit 34832c7ff7
7 changed files with 160 additions and 78 deletions
+2 -2
View File
@@ -42,6 +42,6 @@ func (c *Container) Upgrade(ctx context.Context) error {
return c.Database.Upgrade(ctx)
}
func (c *Container) GetScopedStore(telegramUserID int64) *scopedStore {
return &scopedStore{c.Database, telegramUserID}
func (c *Container) GetScopedStore(telegramUserID int64) *ScopedStore {
return &ScopedStore{c.Database, telegramUserID}
}