aboutsummaryrefslogtreecommitdiff
path: root/karyons_core/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'karyons_core/src/lib.rs')
-rw-r--r--karyons_core/src/lib.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/karyons_core/src/lib.rs b/karyons_core/src/lib.rs
deleted file mode 100644
index 83af888..0000000
--- a/karyons_core/src/lib.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-/// A set of helper tools and functions.
-pub mod utils;
-
-/// A module containing async utilities that work with the `smol` async runtime.
-pub mod async_utils;
-
-/// Represents Karyons's Core Error.
-pub mod error;
-
-/// [`EventSys`](./event/struct.EventSys.html) Implementation
-pub mod event;
-
-/// A simple publish-subscribe system.[`Read More`](./pubsub/struct.Publisher.html)
-pub mod pubsub;
-
-use error::Result;
-use smol::Executor as SmolEx;
-use std::sync::Arc;
-
-/// A wrapper for smol::Executor
-pub type Executor<'a> = Arc<SmolEx<'a>>;