summaryrefslogtreecommitdiff
path: root/src/context.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/context.rs')
-rw-r--r--src/context.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/context.rs b/src/context.rs
index 47661d0..8b13789 100644
--- a/src/context.rs
+++ b/src/context.rs
@@ -1,6 +1 @@
-use std::any::Any;
-pub trait Context {
- fn get(&self, key: &str) -> Option<&dyn Any>;
- fn set(&mut self, key: &str, value: &dyn Any);
-}