13 lines
232 B
Rust
13 lines
232 B
Rust
use matrix_sdk::{
|
|
// config::SyncSettings,
|
|
room::Room,
|
|
ruma::events::room::message::{MessageType, TextMessageEventContent},
|
|
Client,
|
|
};
|
|
use std::env;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
println!("Hello, world!");
|
|
}
|