15 lines
311 B
Swift
15 lines
311 B
Swift
//
|
|
// RoomMessageFactoryProtocol.swift
|
|
// ElementX
|
|
//
|
|
// Created by Stefan Ceriu on 26/05/2022.
|
|
// Copyright © 2022 Element. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import MatrixRustSDK
|
|
|
|
protocol RoomMessageFactoryProtocol {
|
|
func buildRoomMessageFrom(_ message: AnyMessage) -> RoomMessageProtocol
|
|
}
|