2023-04-28 13:49:58 +08:00

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;
}