Files
sr-wkwkwk/resource_api/src/main.rs
2026-02-21 14:06:28 +07:00

12 lines
348 B
Rust

mod res_parser;
mod singleton;
mod types;
fn main() {
let tm = res_parser::text_map::TextMaps::parse().unwrap();
let item_search = res_parser::item::ItemConfigs::parse_to_api_type(&tm).unwrap();
singleton::set_item_search(item_search).ok();
let stellar_jade = singleton::get_item_mini_by_id(&1).unwrap();
dbg!(stellar_jade);
}