api: Change streams > stream to be consistent.

This commit is contained in:
Orne Brocaar
2023-10-31 14:03:31 +00:00
parent 9596f7c2d0
commit 36e6d5ccb9
62 changed files with 951 additions and 956 deletions

2
api/rust/src/lib.rs vendored
View File

@ -6,4 +6,4 @@ pub mod gw;
pub mod integration;
#[cfg(feature = "internal")]
pub mod internal;
pub mod streams;
pub mod stream;

3
api/rust/src/stream.rs vendored Normal file
View File

@ -0,0 +1,3 @@
include!(concat!(env!("OUT_DIR"), "/stream/stream.rs"));
#[cfg(feature = "json")]
include!(concat!(env!("OUT_DIR"), "/stream/stream.serde.rs"));

View File

@ -1,3 +0,0 @@
include!(concat!(env!("OUT_DIR"), "/streams/streams.rs"));
#[cfg(feature = "json")]
include!(concat!(env!("OUT_DIR"), "/streams/streams.serde.rs"));