1 2 3 4 5 6 7
use crate::serial::Serial; use mlua::Error::RuntimeError; use mlua::{Error, Lua}; pub(super) fn handle(_lua: &Lua, _serial: &Serial, _arg: mlua::Value) -> Result<(), Error> { Err(RuntimeError("NIY".to_string())) }