13 lines
232 B
Rust
Raw Normal View History

2022-04-26 21:10:20 -04:00
use matrix_sdk::{
// config::SyncSettings,
room::Room,
ruma::events::room::message::{MessageType, TextMessageEventContent},
Client,
};
use std::env;
#[tokio::main]
async fn main() {
2022-03-16 22:17:40 -04:00
println!("Hello, world!");
}