Initial commit
This commit is contained in:
7
shared/Cargo.toml
Normal file
7
shared/Cargo.toml
Normal file
@@ -0,0 +1,7 @@
|
||||
[package]
|
||||
name = "shared"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
stabby = { workspace = true }
|
||||
11
shared/src/lib.rs
Normal file
11
shared/src/lib.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
#[stabby::stabby]
|
||||
pub struct Input {
|
||||
pub a: i32,
|
||||
pub b: i32,
|
||||
}
|
||||
|
||||
#[stabby::stabby]
|
||||
pub struct Output {
|
||||
pub sum: i32,
|
||||
pub product: i32,
|
||||
}
|
||||
Reference in New Issue
Block a user