diff options
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/Cargo.toml b/crates/shirabe-php-shim/Cargo.toml new file mode 100644 index 0000000..d565ea7 --- /dev/null +++ b/crates/shirabe-php-shim/Cargo.toml @@ -0,0 +1,4 @@ +[package] +name = "shirabe-php-shim" +version.workspace = true +edition.workspace = true diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs new file mode 100644 index 0000000..0e8fab5 --- /dev/null +++ b/crates/shirabe-php-shim/src/lib.rs @@ -0,0 +1,5 @@ +#[derive(Debug)] +pub struct UnexpectedValueException { + pub message: String, + pub code: i64, +} |
