From 04b1504e8715ee6acf498a4261775f3b9d6d6daa Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 13 Jan 2024 20:35:13 +0100 Subject: Add stream Actor and Tag structs and complete StreamItem. --- src/stream.rs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/stream.rs') diff --git a/src/stream.rs b/src/stream.rs index 0348822..c717a17 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -11,16 +11,23 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ +mod actor; mod datetime; mod streamitem; +mod tag; mod verb; +pub use actor::Actor; pub use datetime::DateTime; pub use streamitem::{ StreamItem, StreamItemEncoding, StreamItemType, }; +pub use tag::{ + Tag, + TagType, +}; pub use verb::Verb; use std::{ -- cgit v1.2.3