core/src/chat/chat_api_base.rs

14 lines
185 B
Rust

use super::front_conn;
pub struct Message {
sender_id: i32,
message: String,
}
pub struct ClientServer {}
pub struct FrontendServer {}
pub fn show_message() {}
fn main() {}