diff options
author | Alex Auvolat <alex@adnab.me> | 2020-12-02 20:12:24 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-12-02 20:12:24 +0100 |
commit | 14d34e76f4007e50af89bd47f6ad36f45494c50a (patch) | |
tree | d1a79d397b26f9500917ef5e4eaa6ae70b2d1429 /examples | |
parent | 46fae5d138cb7c0a74e2a8c7837541f18400ccf4 (diff) | |
download | netapp-14d34e76f4007e50af89bd47f6ad36f45494c50a.tar.gz netapp-14d34e76f4007e50af89bd47f6ad36f45494c50a.zip |
Documentate
Diffstat (limited to 'examples')
-rw-r--r-- | examples/basalt.rs | 2 | ||||
-rw-r--r-- | examples/fullmesh.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/basalt.rs b/examples/basalt.rs index bf00547..d6ce520 100644 --- a/examples/basalt.rs +++ b/examples/basalt.rs @@ -9,7 +9,7 @@ use structopt::StructOpt; use sodiumoxide::crypto::auth; use sodiumoxide::crypto::sign::ed25519; -use netapp::netapp::*; +use netapp::NetApp; use netapp::peering::basalt::*; #[derive(StructOpt, Debug)] diff --git a/examples/fullmesh.rs b/examples/fullmesh.rs index 8e2ae07..af315fb 100644 --- a/examples/fullmesh.rs +++ b/examples/fullmesh.rs @@ -7,8 +7,8 @@ use structopt::StructOpt; use sodiumoxide::crypto::auth; use sodiumoxide::crypto::sign::ed25519; -use netapp::netapp::*; use netapp::peering::fullmesh::*; +use netapp::NetApp; #[derive(StructOpt, Debug)] #[structopt(name = "netapp")] |