core/src/chat/chat_api_base.rs

14 lines
185 B
Rust
Raw Normal View History

2020-11-01 16:46:47 +00:00
use super::front_conn;
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() {}