move rhai wrappers of models from rhailib

This commit is contained in:
Timur Gordon
2025-08-21 14:05:01 +02:00
parent 58ed59cd12
commit cedea2f305
19 changed files with 2110 additions and 393 deletions

View File

@@ -0,0 +1,11 @@
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Address {
pub street: String,
pub city: String,
pub state: Option<String>,
pub postal_code: String,
pub country: String,
pub company: Option<String>,
}

View File

@@ -0,0 +1,2 @@
// Export location models
pub mod address;