mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-21 11:13:40 +00:00
12 lines
185 B
Go
12 lines
185 B
Go
|
package sync
|
||
|
|
||
|
import "github.com/matrix-org/dendrite/syncapi/types"
|
||
|
|
||
|
type SyncProvider interface {
|
||
|
WaitFor()
|
||
|
}
|
||
|
|
||
|
type SyncStream interface {
|
||
|
GetLatestPosition() types.StreamPosition
|
||
|
}
|