Skip to content

Commit

Permalink
Add NAME as part of network_management mod
Browse files Browse the repository at this point in the history
Adds a number of way to interact with a control function's NAME
  • Loading branch information
ad3154 committed Aug 8, 2023
1 parent 1a358aa commit ae212f8
Show file tree
Hide file tree
Showing 3 changed files with 480 additions and 13 deletions.
16 changes: 3 additions & 13 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
// Copyright 2023 Raven Industries inc.
#![allow(clippy::module_inception)]

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}
pub mod network_management;
2 changes: 2 additions & 0 deletions src/network_management/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Copyright 2023 Raven Industries inc.
pub mod name;
Loading

0 comments on commit ae212f8

Please sign in to comment.