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