4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-06 09:34:04 +00:00

Add dependencies/vendor (whatsapp)

This commit is contained in:
Wim
2022-01-31 00:27:37 +01:00
parent e7b193788a
commit e3cafeaf92
1074 changed files with 3091569 additions and 26075 deletions

View File

@ -0,0 +1,17 @@
package store
import (
"go.mau.fi/libsignal/protocol"
"go.mau.fi/libsignal/state/record"
)
// Session store is an interface for the persistent storage of session
// state information for remote clients.
type Session interface {
LoadSession(address *protocol.SignalAddress) *record.Session
GetSubDeviceSessions(name string) []uint32
StoreSession(remoteAddress *protocol.SignalAddress, record *record.Session)
ContainsSession(remoteAddress *protocol.SignalAddress) bool
DeleteSession(remoteAddress *protocol.SignalAddress)
DeleteAllSessions()
}