From a8b73178a4624b55607c95651606a14e812a80c5 Mon Sep 17 00:00:00 2001 From: Ryan Ruckley Date: Fri, 11 Jul 2025 12:38:57 +1000 Subject: [PATCH] feat: TMF909 --- Cargo.toml | 2 ++ src/lib.rs | 2 ++ src/tmf909/mod.rs | 4 ++++ 3 files changed, 8 insertions(+) create mode 100644 src/tmf909/mod.rs diff --git a/Cargo.toml b/Cargo.toml index 26b07d2..9264bf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,6 +56,7 @@ tmf700 = [] tmf701 = [] tmf724 = [] tmf760 = [] +tmf909 = [] tmf921 = [] # Build all APIs @@ -95,6 +96,7 @@ all = [ "tmf701", "tmf724", "tmf760", + "tmf909", "tmf921" ] diff --git a/src/lib.rs b/src/lib.rs index 837e0f1..b770deb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -481,6 +481,8 @@ pub mod tmf700; pub mod tmf724; #[cfg(feature = "tmf760")] pub mod tmf760; +#[cfg(feature = "tmf909")] +pub mod tmf909; #[cfg(feature = "tmf921")] pub mod tmf921; diff --git a/src/tmf909/mod.rs b/src/tmf909/mod.rs new file mode 100644 index 0000000..54dfee6 --- /dev/null +++ b/src/tmf909/mod.rs @@ -0,0 +1,4 @@ +//! TMF909 Network as a Service (NaaS) + +/// Module path +pub const MOD_PATH : &str = "naas"; \ No newline at end of file