diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-10-30 09:35:21 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-10-30 09:35:21 +0100 |
commit | b48f3a63a3c9e39d5b9b4b25d97d1d22a0666855 (patch) | |
tree | b28991eec40a58787cede4ad53cb70f2dd576e48 | |
parent | 3c4d00ea2767477492bdecb137cd63c06a61b3cb (diff) | |
download | rust-zotapi-b48f3a63a3c9e39d5b9b4b25d97d1d22a0666855.tar.gz rust-zotapi-b48f3a63a3c9e39d5b9b4b25d97d1d22a0666855.tar.bz2 rust-zotapi-b48f3a63a3c9e39d5b9b4b25d97d1d22a0666855.zip |
Rename stream::streamitem to stream::activity
-rw-r--r-- | src/stream.rs | 4 | ||||
-rw-r--r-- | src/stream/activity.rs (renamed from src/stream/streamitem.rs) | 0 |
2 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, diff --git a/src/stream/streamitem.rs b/src/stream/activity.rs index dd311d7..dd311d7 100644 --- a/src/stream/streamitem.rs +++ b/src/stream/activity.rs |