diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-01-13 20:35:13 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-01-13 20:35:13 +0100 |
commit | 04b1504e8715ee6acf498a4261775f3b9d6d6daa (patch) | |
tree | d49610047948765a0f08ddfb1a83531599e2d06f /src/stream.rs | |
parent | 1c4839d7449fd85734bb1335a303fc377cab1a04 (diff) | |
download | rust-zotapi-04b1504e8715ee6acf498a4261775f3b9d6d6daa.tar.gz rust-zotapi-04b1504e8715ee6acf498a4261775f3b9d6d6daa.tar.bz2 rust-zotapi-04b1504e8715ee6acf498a4261775f3b9d6d6daa.zip |
Add stream Actor and Tag structs and complete StreamItem.
Diffstat (limited to 'src/stream.rs')
-rw-r--r-- | src/stream.rs | 7 |
1 files changed, 7 insertions, 0 deletions
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::{ |