diff --git a/Cargo.toml b/Cargo.toml index 26b07d2c..9264bf74 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 837e0f16..b770deb0 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 00000000..54dfee67 --- /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