dendrite/threepid/storage.go
2021-06-07 11:39:36 +02:00

9 lines
231 B
Go

package threepid
type storage interface {
InsertSession(*Session) error
GetSession(sid string) (*Session, error)
GetSessionByThreePidAndSecret(threePid, ClientSecret string) (*Session, error)
RemoveSession(sid string) error
}