summaryrefslogtreecommitdiff
path: root/src/channel/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/channel/mod.rs')
-rw-r--r--src/channel/mod.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/channel/mod.rs b/src/channel/mod.rs
index 2672084..4baa7e3 100644
--- a/src/channel/mod.rs
+++ b/src/channel/mod.rs
@@ -1,4 +1,4 @@
-use crate::{clock::DateTime, event::Sequence};
+use crate::event::Instant;
pub mod app;
mod id;
@@ -12,7 +12,5 @@ pub struct Channel {
pub id: Id,
pub name: String,
#[serde(skip)]
- pub created_at: DateTime,
- #[serde(skip)]
- pub created_sequence: Sequence,
+ pub created: Instant,
}