diff options
| author | Fuwn <[email protected]> | 2021-06-06 00:09:18 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-06-06 00:09:18 +0000 |
| commit | e46da84bd264993d32a45b88bd5d51af0c6ef5ed (patch) | |
| tree | 7588d6b85683a339deb65fab248b3927012157e3 /crates/whirl_server/src/net/mod.rs | |
| parent | refactor(whirl_server): remove single imports (diff) | |
| download | whirl-e46da84bd264993d32a45b88bd5d51af0c6ef5ed.tar.xz whirl-e46da84bd264993d32a45b88bd5d51af0c6ef5ed.zip | |
refactor(whirl_server::net): move orphan functions to methods within property list struct
Diffstat (limited to 'crates/whirl_server/src/net/mod.rs')
| -rw-r--r-- | crates/whirl_server/src/net/mod.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/crates/whirl_server/src/net/mod.rs b/crates/whirl_server/src/net/mod.rs index 27e4cf5..32f9995 100644 --- a/crates/whirl_server/src/net/mod.rs +++ b/crates/whirl_server/src/net/mod.rs @@ -2,8 +2,5 @@ // SPDX-License-Identifier: GPL-3.0-only pub mod constants; -pub mod converter; -pub mod property_parser; -pub mod structure; - -type PropertyList = Vec<crate::net::structure::NetworkProperty>; +pub mod network_property; +pub mod property_list; |