Language Migration #21

Merged
kdeng00 merged 47 commits from rust-lg into master 2024-06-15 12:22:18 -04:00
Showing only changes of commit 269899af07 - Show all commits
+20
View File
@@ -0,0 +1,20 @@
use crate::models;
pub struct APIParser {
pub api: models::api::API,
pub ica_act: models::icarus_action::IcarusAction,
}
impl APIParser {
// pub fn init() -> APIParser {
// }
pub fn retrieve_api(&self) -> models::api::API {
return models::api::API::default();
}
// TODO: Implement
fn parse_api(&self) {
}
}