1 2 3 4 5 6 7 8 9
use std::rc::Rc; use crate::shell::Context; use super::error::PlatformResult; pub fn init_platform(_context: Rc<Context>) -> PlatformResult<()> { Ok(()) }