mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 03:43:11 -06:00
9 lines
237 B
Go
9 lines
237 B
Go
package caching
|
|
|
|
import "github.com/matrix-org/gomatrixserverlib"
|
|
|
|
type Cache interface {
|
|
GetRoomVersion(roomId string) (gomatrixserverlib.RoomVersion, bool)
|
|
StoreRoomVersion(roomId string, roomVersion gomatrixserverlib.RoomVersion)
|
|
}
|