diff options
Diffstat (limited to 'src/stream.rs')
-rw-r--r-- | src/stream.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stream.rs b/src/stream.rs index c717a17..9575675 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -11,15 +11,15 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ +mod activity; mod actor; mod datetime; -mod streamitem; mod tag; mod verb; pub use actor::Actor; pub use datetime::DateTime; -pub use streamitem::{ +pub use activity::{ StreamItem, StreamItemEncoding, StreamItemType, |