mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-02-19 07:46:47 -05:00
18 lines
244 B
Swift
18 lines
244 B
Swift
//
|
|
// MatrixRustSDKApp.swift
|
|
// MatrixRustSDK
|
|
//
|
|
// Created by Stefan Ceriu on 08.02.2022.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct MatrixRustSDKApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|