core/src/chat/chat_api_base.rs

12 lines
161 B
Rust
Raw Normal View History

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