(roomID string)
| 6 | // a room version cache. |
| 7 | type RoomVersionCache interface { |
| 8 | GetRoomVersion(roomID string) (roomVersion gomatrixserverlib.RoomVersion, ok bool) |
| 9 | StoreRoomVersion(roomID string, roomVersion gomatrixserverlib.RoomVersion) |
| 10 | } |
| 11 |
no outgoing calls
no test coverage detected