mirror of
https://github.com/weyne85/rustdesk.git
synced 2025-10-29 17:00:05 +00:00
14 lines
259 B
Rust
14 lines
259 B
Rust
use std::ffi::{c_char};
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
use crate::{
|
|
flutter::{FlutterHandler, SESSIONS},
|
|
plugins::PLUGIN_REGISTRAR,
|
|
ui_session_interface::Session,
|
|
};
|
|
|
|
pub trait Callable {
|
|
// Call
|
|
fn onCall(method_name: String) -> bool;
|
|
} |