diff options
| author | Fuwn <[email protected]> | 2022-06-13 03:11:04 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-13 03:11:04 +0000 |
| commit | 89c872f5f640237c03c6040e6215dd6c60220bd1 (patch) | |
| tree | f9a8446529abd6522812a3a46aa575d22593a150 /examples | |
| parent | docs(cargo): bump version (diff) | |
| download | windmark-89c872f5f640237c03c6040e6215dd6c60220bd1.tar.xz windmark-89c872f5f640237c03c6040e6215dd6c60220bd1.zip | |
refactor: fix qualifications
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/windmark.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/windmark.rs b/examples/windmark.rs index c3ce6ac..0c5b13b 100644 --- a/examples/windmark.rs +++ b/examples/windmark.rs @@ -54,7 +54,7 @@ impl windmark::Module for Clicker { #[windmark::main] async fn main() -> Result<(), Box<dyn std::error::Error>> { let mut error_count = 0; - let mut router = windmark::Router::new(); + let mut router = Router::new(); router.set_private_key_file("windmark_private.pem"); router.set_certificate_file("windmark_public.pem"); |