diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-09-06 10:31:40 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-09-06 10:31:40 +0200 |
| commit | 9a9d5c5880095adeb43a045dca638243c8f946e4 (patch) | |
| tree | 86e0d23af339b3139efab15749aaf5b59aa0965b /crates/rocie-client/src/models/mod.rs | |
| parent | chore: Initial commit (diff) | |
| download | server-9a9d5c5880095adeb43a045dca638243c8f946e4.zip | |
feat: Provide basic API frame
Diffstat (limited to 'crates/rocie-client/src/models/mod.rs')
| -rw-r--r-- | crates/rocie-client/src/models/mod.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/rocie-client/src/models/mod.rs b/crates/rocie-client/src/models/mod.rs new file mode 100644 index 0000000..6c96c01 --- /dev/null +++ b/crates/rocie-client/src/models/mod.rs @@ -0,0 +1,8 @@ +pub mod barcode; +pub use self::barcode::Barcode; +pub mod product; +pub use self::product::Product; +pub mod product_stub; +pub use self::product_stub::ProductStub; +pub mod unit_amount; +pub use self::unit_amount::UnitAmount; |
