diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-01-08 19:12:02 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-01-08 19:27:38 +0100 |
commit | 5349a0c4320949d803df0dd8596ba8aa5497c81c (patch) | |
tree | b7eccc741e9703b2f1150e18f3010ddf11192d87 /src/lib.rs | |
parent | d9375da4ebf466b6cbcac3b919b7226f0617a9c7 (diff) | |
download | rust-zotapi-5349a0c4320949d803df0dd8596ba8aa5497c81c.tar.gz rust-zotapi-5349a0c4320949d803df0dd8596ba8aa5497c81c.tar.bz2 rust-zotapi-5349a0c4320949d803df0dd8596ba8aa5497c81c.zip |
Add high level stream API.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -14,6 +14,8 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. +pub mod stream; + // mod abconfig; // mod abook; // mod channel_stream; @@ -26,6 +28,8 @@ mod verify; mod xchan; mod zotapi; +pub use stream::Stream; + // pub use abconfig::ABConfig; // pub use abook::Abook; // pub use channel_stream::channel_stream; |