core/src/chat/chat_api_base.rs

11 lines
112 B
Rust
Raw Normal View History

2020-09-14 08:50:18 +00:00
pub struct Message {
sender_id: i32,
message: String,
}
pub fn show_message () {
}
pub fn main () {}